Sha256: 26fbb9c83a45cc890780af7d3265a2fb90caf61080b48a61f2cff990457d3641

Contents?: true

Size: 659 Bytes

Versions: 29

Compression:

Stored size: 659 Bytes

Contents

var setPrototypeOf = require("./setPrototypeOf");

var isNativeReflectConstruct = require("./isNativeReflectConstruct");

function _construct(Parent, args, Class) {
  if (isNativeReflectConstruct()) {
    module.exports = _construct = Reflect.construct;
  } else {
    module.exports = _construct = function _construct(Parent, args, Class) {
      var a = [null];
      a.push.apply(a, args);
      var Constructor = Function.bind.apply(Parent, a);
      var instance = new Constructor();
      if (Class) setPrototypeOf(instance, Class.prototype);
      return instance;
    };
  }

  return _construct.apply(null, arguments);
}

module.exports = _construct;

Version data entries

29 entries across 29 versions & 4 rubygems

Version Path
trusty-cms-4.1.9 node_modules/@babel/runtime/helpers/construct.js
trusty-cms-4.1.8 node_modules/@babel/runtime/helpers/construct.js
tang-0.2.0 spec/tang_app/node_modules/@babel/runtime/helpers/construct.js
trusty-cms-4.1.7 node_modules/@babel/runtime/helpers/construct.js
tang-0.1.0 spec/tang_app/node_modules/@babel/runtime/helpers/construct.js
tang-0.0.9 spec/tang_app/node_modules/@babel/runtime/helpers/construct.js
trusty-cms-4.1.6 node_modules/@babel/runtime/helpers/construct.js
trusty-cms-4.1.5 node_modules/@babel/runtime/helpers/construct.js
condenser-0.3 lib/condenser/processors/node_modules/@babel/runtime/helpers/construct.js