1.0.3 • Published 5 years ago

@scriptless/util v1.0.3

Weekly downloads
5
License
MIT
Repository
github
Last release
5 years ago

@scriptless/util

npm npm

JavaScript utility functions.

Getting Started

Install with npm install @scriptless/util.

Import any function you'd like to use with a full path.

import { listify } from '@scriptless/util'

const myList = ['foo', 'bar', 'baz']

console.log(listify(myList))

// >  foo, bar, and baz