0.0.1 • Published 6 years ago

obbie v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

Obbie

Obbie aims to make available Ruby's Hash methods to JavaScript as a collection of functions.

Note: All functions are immutable. Methods such as delete_if, clear and a few others which mutates the original object, are all treated to be immutable!

Usage

import { deleteIf } from 'obbie'

const myObject = { a: 1, b: 2, c: 3 }
const oddValues = deleteIf(
  myObject,
  (_, value) => value % 2
) //=> { a: 1, c: 3 }

API

License

MIT License

Copyright (c) 2017 Jhonny Moreira