UNPKG

147 BJavaScriptView Raw
1const {getCallerPath} = require('../lib/util/caller');
2exports.sayHello = () => {
3 console.log('hello,world');
4 console.log(getCallerPath());
5};