File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1385,7 +1385,7 @@ export function stringToUtf16(string, isBigEndian) {
13851385 * @param {boolean } isBigEndian
13861386 * @returns {Uint8Array }
13871387 */
1388- export function codePointToUtf16 ( codepoint , isBigEndian ) {
1388+ export function codepointToUtf16 ( codepoint , isBigEndian ) {
13891389 return stringToUtf16 ( String . fromCodePoint ( codepoint . value ) , isBigEndian ) ;
13901390}
13911391
@@ -1426,7 +1426,7 @@ export function stringToUtf32(string, isBigEndian) {
14261426 * @param {boolean } isBigEndian
14271427 * @returns {Uint8Array }
14281428 */
1429- export function codePointToUtf32 ( codepoint , isBigEndian ) {
1429+ export function codepointToUtf32 ( codepoint , isBigEndian ) {
14301430 return stringToUtf32 ( String . fromCodePoint ( codepoint . value ) , isBigEndian ) ;
14311431}
14321432
You can’t perform that action at this time.
0 commit comments