jstd-web/node_modules/@uppy/utils/lib/hasProperty.js

7 lines
127 B
JavaScript

"use strict";
function has(object, key) {
return Object.prototype.hasOwnProperty.call(object, key);
}
module.exports = has;