1
0
Files
sashinexists/node_modules/decode-base64/test/fixtures.js
2024-12-07 13:18:31 +11:00

16 lines
229 B
JavaScript

/* MAIN */
const Fixtures = [
'',
'\0',
'\ufeff',
'👪',
'Hello, World!',
new Array ( 55296 ).fill ( 0 ).map ( ( _, index ) => String.fromCharCode ( index ) ).join ( '' )
];
/* EXPORT */
export default Fixtures;