alamenai / arrow

A modern JavaScript utility library for complex data structures.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Arrow

A modern JavaScript utility library for complex data structures

Basic Example

import {omit} from "arrow"

const frameworks = ["react", "vue", "ember", "angular"];
const withoutAngular = omit(frameworks,"angular");

console.log(withoutAngular); // ["react", "vue", "ember"]

Show more →

About

A modern JavaScript utility library for complex data structures.

License:MIT License


Languages

Language:JavaScript 100.0%