Skip to content

Commit

Permalink
⬆️ @2.4.26
Browse files Browse the repository at this point in the history
  • Loading branch information
kobezzza committed May 15, 2016
1 parent fc58441 commit e42380d
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion bower.json
Expand Up @@ -3,7 +3,7 @@
"description": "Small JavaScript library for replacing string literals, regular expressions and comments in JavaScript syntax.",
"homepage": "https://github.com/kobezzza/Escaper",
"main": "dist/escaper.min.js",
"version": "2.4.25",
"version": "2.4.26",
"license": "MIT",
"authors": [
{
Expand Down
17 changes: 9 additions & 8 deletions dist/escaper.js
@@ -1,17 +1,17 @@
/*!
* Escaper v2.4.25
* Escaper v2.4.26
* https://github.com/kobezzza/Escaper
*
* Released under the MIT license
* https://github.com/kobezzza/Escaper/blob/master/LICENSE
*
* Date: Tue, 02 Feb 2016 14:43:43 GMT
* Date: Sun, 15 May 2016 11:07:41 GMT
*/

(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define('Escaper', ['exports'], factory) :
(factory((global.Escaper = {})));
(factory((global.Escaper = global.Escaper || {})));
}(this, function (exports) { 'use strict';

var babelHelpers = {};
Expand All @@ -23,7 +23,7 @@
babelHelpers;

var Escaper = {
VERSION: [2, 4, 25],
VERSION: [2, 4, 26],
content: [],
cache: {},
snakeskinRgxp: null,
Expand Down Expand Up @@ -162,8 +162,8 @@
}
}

var symbols = undefined;
var snakeskinRgxp = undefined;
var symbols = void 0;
var snakeskinRgxp = void 0;
var uSRgxp = /[^\s\/]/;
var wRgxp = /[a-z]/;
var sRgxp = /\s/;
Expand Down Expand Up @@ -219,6 +219,7 @@
var cache = Escaper.cache;
var content = Escaper.content;


var isObj = Boolean(opt_withCommentsOrParams && objMap[typeof opt_withCommentsOrParams === 'undefined' ? 'undefined' : babelHelpers.typeof(opt_withCommentsOrParams)]);

var p = isObj ? Object(opt_withCommentsOrParams) : {};
Expand Down Expand Up @@ -289,8 +290,8 @@
var templateVar = 0,
filterStart = false;

var cut = undefined,
label = undefined;
var cut = void 0,
label = void 0;

var part = '',
rPart = '';
Expand Down
6 changes: 3 additions & 3 deletions dist/escaper.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -4,7 +4,7 @@
"homepage": "https://github.com/kobezzza/Escaper",
"main": "dist/escaper.js",
"jsnext:main": "src/escaper.js",
"version": "2.4.25",
"version": "2.4.26",
"license": "MIT",
"author": {
"name": "kobezzza",
Expand Down
2 changes: 1 addition & 1 deletion src/escaper.js
Expand Up @@ -9,7 +9,7 @@
*/

const Escaper = {
VERSION: [2, 4, 25],
VERSION: [2, 4, 26],
content: [],
cache: {},
snakeskinRgxp: null,
Expand Down

0 comments on commit e42380d

Please sign in to comment.