Sha256: 3272ad3082158b7bd0badf9ab6bdbc088a899bdd2231c818752e488e9cd6d7cc

Contents?: true

Size: 602 Bytes

Versions: 29

Compression:

Stored size: 602 Bytes

Contents

import setPrototypeOf from "./setPrototypeOf";
import isNativeReflectConstruct from "./isNativeReflectConstruct";
export default function _construct(Parent, args, Class) {
  if (isNativeReflectConstruct()) {
    _construct = Reflect.construct;
  } else {
    _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);
}

Version data entries

29 entries across 29 versions & 4 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-5.0.7 node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-5.0.6 node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-5.0.5 node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-5.0.4 node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-5.0.3 node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-5.0.2 node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-5.0.1 node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-4.3.5 node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-5.0.0 node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-4.3.4 node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-4.3.3 node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-4.3.2 node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-4.3.1 node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-4.3 node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-4.2.3 node_modules/@babel/runtime/helpers/esm/construct.js
tang-0.2.1 spec/tang_app/node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-4.2.2 node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-4.2.1 node_modules/@babel/runtime/helpers/esm/construct.js
trusty-cms-4.2 node_modules/@babel/runtime/helpers/esm/construct.js