Skip to content

Commit 080b53a

Browse files
committed
fix: use Symbol.for to use portable symbols
1 parent 19b001b commit 080b53a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/multipart/file.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { SizeValidator } from './validators/size.ts'
1717
import { ExtensionValidator } from './validators/extensions.ts'
1818
import type { FileJSON, FileUploadError, FileValidationOptions } from '../types.ts'
1919

20-
const STORE_IN_FLASH = Symbol('store_in_flash')
20+
const STORE_IN_FLASH = Symbol.for('store_in_flash')
2121

2222
/**
2323
* The file holds the meta/data for an uploaded file, along with

0 commit comments

Comments
 (0)