mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
7 lines
238 B
JavaScript
7 lines
238 B
JavaScript
|
|
// helper function to safely check whether an object as a property
|
|
// copy from the function in object.js which is ES6
|
|
export function hasOwnProperty (object, property) {
|
|
return object && Object.hasOwnProperty.call(object, property)
|
|
}
|