** * * @param {String} unit * @param {Number} item * function foo(name,age) { return {name, age} } foo("Luke",18) ** * * @param {String} ??? * @param {Number} ??? * function bar({name,age}) { return {name, age} } bar(...
I have the following project structure: - index.js - utils - checkSFZH.js - isEqual.js index.js files export all files import checkSFZH from . utils checkSFZH ; import isEqual from . utils isEqual ; export{ checkSFZH, ...