9 lines
152 B
JavaScript
9 lines
152 B
JavaScript
|
const t=require('node-google-translate-skidz')
|
||
|
|
||
|
t({
|
||
|
text: 'this is a test of the meow',
|
||
|
'source': 'en',
|
||
|
target: 'ta'
|
||
|
}, (res) => {
|
||
|
console.log(res);
|
||
|
});
|