Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 1.35 KB

README.md

File metadata and controls

43 lines (28 loc) · 1.35 KB

lodash in TypeScript

NPM version Build Status Coverage Status Greenkeeper badge gzip size

Minimal (and naive) implementation subset of lodash functions in typescript. Implemented only most commonly used function in a very simple way. No excessive checks are made (trust the compiler), most edge cases (like unicode codepoints) are ignored. Can be used with tree shaking bundlers like rollup/webpack.

Installation

Using npm:

$ npm i typedash

Usage

From TypeScript/es6 (using webpack2 or rollup)

import {noop} from 'typedash'

noop()

From nodejs

const {noop} = require('typedash')

noop()

Full documentation