-
Notifications
You must be signed in to change notification settings - Fork 30
/
angular.js
36 lines (36 loc) · 973 Bytes
/
angular.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
require("./i18n");
require("reflect-metadata");
var core_1 = require("@angular/core");
var L = (function () {
function L() {
}
L.prototype.transform = function (value) {
var more = [];
for (var _i = 1; _i < arguments.length; _i++) {
more[_i - 1] = arguments[_i];
}
return global["L"].apply(global, [value].concat(more));
};
L = __decorate([
core_1.Pipe({
name: 'L'
})
], L);
return L;
}());
exports.L = L;
var NativeScriptI18nModule = (function () {
function NativeScriptI18nModule() {
}
NativeScriptI18nModule = __decorate([
core_1.NgModule({
declarations: [L],
exports: [L]
})
], NativeScriptI18nModule);
return NativeScriptI18nModule;
}());
exports.NativeScriptI18nModule = NativeScriptI18nModule;
//# sourceMappingURL=angular.js.map