You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
441 B
11 lines
441 B
import { extend } from '../utils'; |
|
|
|
/** |
|
* Create a new object with "null"-prototype to avoid truthy results on prototype properties. |
|
* The resulting object can be used with "object[property]" to check if a property exists |
|
* @param {...object} sources a varargs parameter of source objects that will be merged |
|
* @returns {object} |
|
*/ |
|
export function createNewLookupObject(...sources) { |
|
return extend(Object.create(null), ...sources); |
|
}
|
|
|