Co-authored-by: Huáng Jùnliàng <jlhwung@gmail.com> Co-authored-by: Babel Bot <babel-bot@users.noreply.github.com>
21 lines
382 B
JavaScript
21 lines
382 B
JavaScript
let Array = function Array() {
|
|
"use strict";
|
|
|
|
babelHelpers.classCallCheck(this, Array);
|
|
};
|
|
|
|
let List = /*#__PURE__*/function (_Array) {
|
|
"use strict";
|
|
|
|
babelHelpers.inherits(List, _Array);
|
|
|
|
var _super = babelHelpers.createSuper(List);
|
|
|
|
function List() {
|
|
babelHelpers.classCallCheck(this, List);
|
|
return _super.apply(this, arguments);
|
|
}
|
|
|
|
return List;
|
|
}(Array);
|