17 lines
388 B
JavaScript
17 lines
388 B
JavaScript
let Array = function Array() {
|
|
babelHelpers.classCallCheck(this, Array);
|
|
};
|
|
|
|
let List =
|
|
/*#__PURE__*/
|
|
function (_Array) {
|
|
babelHelpers.inherits(List, _Array);
|
|
|
|
function List() {
|
|
babelHelpers.classCallCheck(this, List);
|
|
return babelHelpers.possibleConstructorReturn(this, (List.__proto__ || Object.getPrototypeOf(List)).apply(this, arguments));
|
|
}
|
|
|
|
return List;
|
|
}(Array);
|