Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1016 bytes
|
Line | |
---|
1 | "use strict";
|
---|
2 |
|
---|
3 | exports.__esModule = true;
|
---|
4 | exports["default"] = void 0;
|
---|
5 |
|
---|
6 | var _namespace = _interopRequireDefault(require("./namespace"));
|
---|
7 |
|
---|
8 | var _types = require("./types");
|
---|
9 |
|
---|
10 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
---|
11 |
|
---|
12 | function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }
|
---|
13 |
|
---|
14 | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
---|
15 |
|
---|
16 | var Universal = /*#__PURE__*/function (_Namespace) {
|
---|
17 | _inheritsLoose(Universal, _Namespace);
|
---|
18 |
|
---|
19 | function Universal(opts) {
|
---|
20 | var _this;
|
---|
21 |
|
---|
22 | _this = _Namespace.call(this, opts) || this;
|
---|
23 | _this.type = _types.UNIVERSAL;
|
---|
24 | _this.value = '*';
|
---|
25 | return _this;
|
---|
26 | }
|
---|
27 |
|
---|
28 | return Universal;
|
---|
29 | }(_namespace["default"]);
|
---|
30 |
|
---|
31 | exports["default"] = Universal;
|
---|
32 | module.exports = exports.default; |
---|
Note:
See
TracBrowser
for help on using the repository browser.