They are commonly used tools and methods in their own projects
$ npm install wft-utils --save
import * as wftUtils from 'wft-utils'
// Take obtaining the current time as an example
const { currTime, currTimeStamp } = wftUtils.getCurrTime()
or
const wftUtils = require('wft-utils')
// Take obtaining the current time as an example
const { currTime, currTimeStamp } = wftUtils.getCurrTime()
import { getCurrTime } from 'wft-utils'
// Take obtaining the current time as an example
const { currTime, currTimeStamp } = getCurrTime()
or
const { getCurrTime } = require('wft-utils')
// Take obtaining the current time as an example
const { currTime, currTimeStamp } = getCurrTime()