All Projects → arusanov → typedash

arusanov / typedash

Licence: MIT License
🚀 2KB lodash in typescript

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to typedash

utils.js
Fast, small and purely functional utility library
Stars: ✭ 132 (+407.69%)
Mutual labels:  lodash
rudash
Rudash - Lodash for Ruby Apps
Stars: ✭ 27 (+3.85%)
Mutual labels:  lodash
godash
Lodash for Golang
Stars: ✭ 43 (+65.38%)
Mutual labels:  lodash
HIGH-TO-LOW
in this repository you will find codes in C and their equivalence in MIPS Assembly
Stars: ✭ 20 (-23.08%)
Mutual labels:  micro
piranha
Piranha - a modern cloud runtime
Stars: ✭ 136 (+423.08%)
Mutual labels:  micro
micro-redirect
A tiny Node.js microservice to redirect users to a different location.
Stars: ✭ 16 (-38.46%)
Mutual labels:  micro
gameplate
🎮 Boilerplate for creating game with WebGL & Redux 🎲
Stars: ✭ 39 (+50%)
Mutual labels:  lodash
es-aux
JavaScript开发辅助,包含了开发过程中很多场景需要用到的函数。
Stars: ✭ 22 (-15.38%)
Mutual labels:  lodash
elixir-ms
an elixir microservice base/skeleton 💀
Stars: ✭ 39 (+50%)
Mutual labels:  micro
eslint-plugin-lodash-template
ESLint plugin for John Resig-style micro template, Lodash's template, Underscore's template and EJS.
Stars: ✭ 15 (-42.31%)
Mutual labels:  lodash
criterion
statistics-driven micro-benchmarking framework
Stars: ✭ 17 (-34.62%)
Mutual labels:  micro
KodersHub
CodeEditor Mern WebApp specifically designed for Kids and Teens🤩
Stars: ✭ 25 (-3.85%)
Mutual labels:  lodash
micro-code-analyser
A tiny Node.js microservice to detect the language of a code snippet
Stars: ✭ 21 (-19.23%)
Mutual labels:  micro
Javascript-Interview-Preparation
A curated collection of javascript interview questions & solutions.
Stars: ✭ 163 (+526.92%)
Mutual labels:  lodash
eslint-config-adjunct
A reasonable collection of plugins to use alongside your main esLint configuration
Stars: ✭ 39 (+50%)
Mutual labels:  lodash
map-keys-deep-lodash
Map/rename keys recursively with Lodash
Stars: ✭ 16 (-38.46%)
Mutual labels:  lodash
micro
A simple tool kit for building microservices.
Stars: ✭ 15 (-42.31%)
Mutual labels:  micro
micro-match
A micro library for matching urls.
Stars: ✭ 36 (+38.46%)
Mutual labels:  micro
react-wisteria
Managing the State with the Golden Path
Stars: ✭ 18 (-30.77%)
Mutual labels:  lodash
underwater
~2kb - ES6 Collection of helper functions. Lodash like
Stars: ✭ 18 (-30.77%)
Mutual labels:  lodash

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].