Files
iD/test/spec/util/object.js
Bryan Housel 4821bf0a68 Remove lodash omit
(re: #6087)
2019-03-26 14:12:45 -04:00

10 lines
310 B
JavaScript

describe('iD.utilObjectOmit', function() {
it('omits keys', function() {
var t = { a: 1, b: 2 };
expect(iD.utilObjectOmit(t, [])).to.eql({ a: 1, b: 2 });
expect(iD.utilObjectOmit(t, ['a'])).to.eql({ b: 2 });
expect(iD.utilObjectOmit(t, ['a', 'b'])).to.eql({});
});
});