UNPKG

ember-cli-flash

Version:

Simple, highly configurable flash messages for ember-cli

13 lines (11 loc) 306 B
function objectWithout(originalObj = {}, keysToRemove = []) { let newObj = {}; for (let key in originalObj) { if (keysToRemove.indexOf(key) === -1) { newObj[key] = originalObj[key]; } } return newObj; } export { objectWithout as default }; //# sourceMappingURL=object-without.js.map