wft-utils
They are commonly used tools and methods in their own projects
Installation
$ npm install wft-utils --save
Usage
Full introduction:
import * as wftUtils from 'wft-utils'
const { currTime, currTimeStamp } = wftUtils.getCurrTime()
or
const wftUtils = require('wft-utils')
const { currTime, currTimeStamp } = wftUtils.getCurrTime()
Introduction on demand:
import { getCurrTime } from 'wft-utils'
const { currTime, currTimeStamp } = getCurrTime()
or
const { getCurrTime } = require('wft-utils')
const { currTime, currTimeStamp } = getCurrTime()