Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 285 Bytes

File metadata and controls

16 lines (13 loc) · 285 Bytes

Relative imports

// @errors: 1259
// @filename: utilFunctions.js
const getStringLength = str => str.length
module.exports = {
  getStringLength,
}

// @filename: index.ts
import utils from './utilFunctions'
const count = utils.getStringLength('Check JS')

Hello