mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
11 lines
308 B
JavaScript
11 lines
308 B
JavaScript
require('../../modules/es.object.define-properties');
|
|
var path = require('../../internals/path');
|
|
|
|
var Object = path.Object;
|
|
|
|
var defineProperties = module.exports = function defineProperties(T, D) {
|
|
return Object.defineProperties(T, D);
|
|
};
|
|
|
|
if (Object.defineProperties.sham) defineProperties.sham = true;
|