UNPKG

react-native-confirmation-code-field

Version:

A react-native component to input confirmation code for both Android and IOS

11 lines (8 loc) 215 B
// @flow export const omit = (arr: Array<string>, obj: Object): Object => Object.keys(obj) .filter(k => !arr.includes(k)) .reduce((acc, key) => { acc[key] = obj[key]; return acc; }, {});