Skip to content

jojoee/object.intersect

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

object.intersect

Travis Dependency Status Codecov Version - npm License - npm semantic-release Greenkeeper badge

Fast object.intersect key / PHP array_intersect_key with no dependencies

Installation

// npm
npm install object.intersect
const intersect = require('object.intersect')

Example usage

intersect() // {}
intersect({}) // {}
intersect(null) // {}
intersect(undefined) // {}

const obj1 = { a: 'a', b: 'b', c: 'c' }
const obj2 = { a: 'a', b: 'x', c: 'c' }
const obj3 = { a: 'a', c: 'c' } // subset of obj
intersect(obj1, obj2) // { a: 'a', b: 'b', c: 'c' }
intersect(obj1, obj3, obj2) // { a: 'a', c: 'c' }

Reference

Releases

No releases published

Packages

No packages published