deeplXnodeless / test.js
MISASI's picture
Upload 7 files
12d5b92 verified
raw
history blame contribute delete
307 Bytes
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
)
);
})()