Skip to content

Commit

Permalink
- build, keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
ezolenko committed Sep 30, 2017
1 parent 6362a66 commit 5bb8a7a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
13 changes: 7 additions & 6 deletions dist/rollup-plugin-typescript2.cjs.js
Expand Up @@ -17152,9 +17152,7 @@ var lodash = createCommonjsModule(function (module, exports) {

// Define as an anonymous module so, through path mapping, it can be
// referenced as the "underscore" module.
undefined(function() {
return _;
});

}
// Check for `exports` after `define` in case a build optimizer adds it.
else if (freeModule) {
Expand Down Expand Up @@ -17321,6 +17319,10 @@ if (!lodash$2) {

var lodash_1$1 = lodash$2;

"use strict";



var graph = Graph;

var DEFAULT_EDGE_NAME = "\x00";
Expand Down Expand Up @@ -19195,8 +19197,7 @@ module['exports'] = function zalgo(text, options) {
'̷', '͡', ' ҉'
]
},
all = [].concat(soul.up, soul.down, soul.mid),
zalgo = {};
all = [].concat(soul.up, soul.down, soul.mid);

function randomNumber(range) {
var r = Math.floor(Math.random() * range);
Expand Down Expand Up @@ -19465,7 +19466,7 @@ function init() {
}

var sequencer = function sequencer (map, str) {
var exploded = str.split(""), i = 0;
var exploded = str.split("");
exploded = exploded.map(map);
return exploded.join("");
};
Expand Down
13 changes: 7 additions & 6 deletions dist/rollup-plugin-typescript2.es.js
Expand Up @@ -17148,9 +17148,7 @@ var lodash = createCommonjsModule(function (module, exports) {

// Define as an anonymous module so, through path mapping, it can be
// referenced as the "underscore" module.
undefined(function() {
return _;
});

}
// Check for `exports` after `define` in case a build optimizer adds it.
else if (freeModule) {
Expand Down Expand Up @@ -17317,6 +17315,10 @@ if (!lodash$2) {

var lodash_1$1 = lodash$2;

"use strict";



var graph = Graph;

var DEFAULT_EDGE_NAME = "\x00";
Expand Down Expand Up @@ -19191,8 +19193,7 @@ module['exports'] = function zalgo(text, options) {
'̷', '͡', ' ҉'
]
},
all = [].concat(soul.up, soul.down, soul.mid),
zalgo = {};
all = [].concat(soul.up, soul.down, soul.mid);

function randomNumber(range) {
var r = Math.floor(Math.random() * range);
Expand Down Expand Up @@ -19461,7 +19462,7 @@ function init() {
}

var sequencer = function sequencer (map, str) {
var exploded = str.split(""), i = 0;
var exploded = str.split("");
exploded = exploded.map(map);
return exploded.join("");
};
Expand Down
2 changes: 2 additions & 0 deletions package.json
Expand Up @@ -11,6 +11,8 @@
"src"
],
"keywords": [
"rollup-plugin-typescript2",
"rollup-plugin-typescript",
"rollup-plugin",
"typescript",
"es2015",
Expand Down

0 comments on commit 5bb8a7a

Please sign in to comment.