mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-09 19:44:56 +02:00
10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
'use strict';
|
|
require('../../modules/es.object.create');
|
|
var path = require('../../internals/path');
|
|
|
|
var Object = path.Object;
|
|
|
|
module.exports = function create(P, D) {
|
|
return Object.create(P, D);
|
|
};
|