KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
nodash
★ 13
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
stemmer-rs
:
Stemming library for Rust, using bindings to Snowball C implementation
malfeed
:
Feed for verious malicious IPs such as malware and botnets
npm-sass
:
sass compilation with npm aware include paths
DiDiPark
:
基于LBS地图开发的查找停车位软件,期在使用户能合理的运用空闲的车位或者家中空闲的土地。旨在缓解停车难,乱停车的乱象。也使得停车位更能被合理的运用,同时也能使得用户收入一部分收益。目前部署在sea中。
flysystem-smb
:
Flysystem Adapter for Icewind SMB
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
nodash
?
Download (.md)
# 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 ```js 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] ```