We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b7d3aa commit c997529Copy full SHA for c997529
2 files changed
package.json
@@ -122,6 +122,7 @@
122
"/single-byte.js",
123
"/single-byte.d.ts",
124
"/single-byte.node.js",
125
+ "/utf16.js",
126
"/utf16.d.ts",
127
"/utf16.native.js",
128
"/utf16.node.js",
@@ -204,7 +205,7 @@
204
205
"types": "./utf16.d.ts",
206
"node": "./utf16.node.js",
207
"react-native": "./utf16.native.js",
- "default": "./utf16.native.js"
208
+ "default": "./utf16.js"
209
},
210
"./utf8.js": {
211
"types": "./utf8.d.ts",
@@ -225,6 +226,7 @@
225
226
227
"react-native": {
228
"./encoding-browser.js": "./encoding-browser.native.js",
229
+ "./utf16.js": "./utf16.native.js",
230
"./fallback/utf8.auto.js": "./fallback/utf8.auto.native.js"
231
232
"peerDependencies": {
utf16.js
@@ -0,0 +1 @@
1
+export * from './utf16.native.js'
0 commit comments