Skip to content

hax/nodash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

nodash

Write JavaScript code without lodash/underscore

What's wrong with lodash/underscore ?

TODO

See also: https://github.com/reindexio/youmightnotneedunderscore

New bind operator proposal to rescue !

TODO

How-to

import {map} from 'nodash-collection'

let a = [1, 2, 3]
a::map(x => x * 3) // → [3, 6, 9]


import {partialRight} from 'nodash-function'

const mapTriple = map::partialRight(x => x * 3)
a::mapTriple() // → [3, 6, 9]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published