UNPKG

ember-cli-flash

Version:

Simple, highly configurable flash messages for ember-cli

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