CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
index.js23 linesDownload Raw Back to object.assign
1'use strict';2 3var defineProperties = require('define-properties');4var callBind = require('call-bind');5 6var implementation = require('./implementation');7var getPolyfill = require('./polyfill');8var shim = require('./shim');9 10var polyfill = callBind.apply(getPolyfill());11// eslint-disable-next-line no-unused-vars12var bound = function assign(target, source1) {13	return polyfill(Object, arguments);14};15 16defineProperties(bound, {17	getPolyfill: getPolyfill,18	implementation: implementation,19	shim: shim20});21 22module.exports = bound;23 
basant307/AI_Governance_Project · CoolFace