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

7 lines
127 B
JavaScript
Raw Normal View History

2025-11-25 15:23:22 +08:00
"use strict";
function has(object, key) {
return Object.prototype.hasOwnProperty.call(object, key);
}
module.exports = has;