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.
Using npm:
$ npm i typedash
From TypeScript/es6 (using webpack2 or rollup)
import {noop} from 'typedash'
noop()
From nodejs
const {noop} = require('typedash')
noop()
Generated using TypeDoc