🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

wft-utils

Package Overview
Dependencies
Maintainers
1
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wft-utils

The commonly used tool functions in daily development

latest
npmnpm
Version
1.52.0
Version published
Maintainers
1
Created
Source

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'

// 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()

Introduction on demand:

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()

Keywords

wft

FAQs

Package last updated on 06 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts