Spaces:
Sleeping
Sleeping
File size: 307 Bytes
12d5b92 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
const translate = require('./translate');
;(async () => {
// Example Call
console.log(await translate('明天你好', 'ZH', 'EN', true, true));
console.log(
await translate(
'Generate a cryptographically strong random string',
'EN',
'ZH',
true,
true
)
);
})()
|