module.exports = async function setValues(arr){
//some code
console.log(arr)
}
const exported = require('./index')
async function fun(){
let array = []
array .push(1)
//some code
exported.setValues(array)
}
const exported = require('./index');
async function fun() {
exported([1]);
}