Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

typograf

Package Overview
Dependencies
Maintainers
1
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

typograf - npm Package Compare versions

Comparing version 2.12.1 to 2.13.0

dist/typograf.groups.js

264

dist/typograf.js

@@ -92,12 +92,19 @@ /*! Typograf | © 2015 Denis Seleznev | https://github.com/typograf/typograf/ */

/**
* Add data for use in rules.
* Get/set data for use in rules.
*
* @static
* @param {string} key
* @param {*} value
* @param {*} [value]
* @return {*}
*/
Typograf.data = function(key, value) {
Typograf.prototype._data[key] = value;
if(arguments.length === 1) {
return Typograf._data[key];
} else {
Typograf._data[key] = value;
}
};
Typograf._data = {};
Typograf._sortRules = function() {

@@ -122,12 +129,8 @@ Typograf.prototype._rules.sort(function(a, b) {

rquot2 = settings.rquot2,
quotes = '[«»„“”"]',
quotes = '[' + Typograf.data('common/quot') + ']',
phrase = '[' + letters + ')!?.:;#*,]*?',
reL = new RegExp('"([…' + letters + '])', 'gi'),
reR = new RegExp('(' + phrase + ')"(' + phrase + ')', 'gi'),
reL1 = new RegExp(rquot2 + '([^' + lquot2 + rquot2 + ']*?)' + rquot2, 'g'),
reR1 = new RegExp(lquot2 + '([^' + lquot2 + rquot2 + ']*?)' + lquot2, 'g'),
reL2 = new RegExp(lquot2, 'g'),
reR2 = new RegExp(rquot2, 'g'),
reQuotes = new RegExp(quotes, 'g'),
reFirstQuote = new RegExp('^(\s)?(' + quotes + ')', 'g'),
reFirstQuot = new RegExp('^(\s)?(' + quotes + ')', 'g'),
reOpeningTag = new RegExp('(^|\\s)' + quotes + privateLabel, 'g'),

@@ -138,27 +141,19 @@ reClosingTag = new RegExp(privateLabel + quotes + '([\s!?.:;#*,]|$)', 'g');

.replace(reQuotes, '"')
.replace(reL, lquot2 + '$1') // Opening quote
.replace(reR, '$1' + rquot2 + '$2') // Closing quote
.replace(reOpeningTag, '$1' + lquot2 + privateLabel)
.replace(reClosingTag, privateLabel + rquot2 + '$1')
.replace(reFirstQuote, '$1' + lquot2)
.replace(new RegExp('(^|\\w|\\s)' + rquot2 + lquot2, 'g'),
'$1' + lquot2 + lquot2); // Fixed for the case »« at the beginning of the text
.replace(reL, lquot + '$1') // Opening quote
.replace(reR, '$1' + rquot + '$2') // Closing quote
.replace(reOpeningTag, '$1' + lquot + privateLabel)
.replace(reClosingTag, privateLabel + rquot + '$1')
.replace(reFirstQuot, '$1' + lquot)
.replace(new RegExp('(^|\\w|\\s)' + rquot + lquot, 'g'),
'$1' + lquot + lquot); // Fixed for the case »« at the beginning of the text
if(lquot === lquot2 && rquot === rquot2) {
text = text
.replace(reL2, lquot)
.replace(reR2, rquot)
// ««Энергия» Синергия» -> «Энергия» Синергия»
.replace(new RegExp(lquot + lquot, 'g'), lquot)
// «Энергия «Синергия»» -> «Энергия «Синергия»
.replace(new RegExp(rquot + rquot, 'g'), rquot);
} else {
text = text
.replace(reL1, rquot2 + '$1' + rquot)
.replace(reR1, lquot + '$1' + lquot2);
if(text.search(lquot) === -1 || text.search(rquot) === -1) {
text = text
.replace(reL2, lquot)
.replace(reR2, rquot);
if(lquot2 && rquot2) {
if(lquot === lquot2 && rquot === rquot2) {
return text
// ««Энергия» Синергия» -> «Энергия» Синергия»
.replace(new RegExp(lquot + lquot, 'g'), lquot)
// «Энергия «Синергия»» -> «Энергия «Синергия»
.replace(new RegExp(rquot + rquot, 'g'), rquot);
} else {
return Typograf._innerQuot(text, settings);
}

@@ -170,2 +165,49 @@ }

Typograf._innerQuot = function(text, settings) {
var openingQuotes = [settings.lquot],
closingQuotes = [settings.rquot],
lquot = settings.lquot,
rquot = settings.rquot,
bufText = new Array(text.length);
if(settings.lquot2 && settings.rquot2) {
openingQuotes.push(settings.lquot2);
closingQuotes.push(settings.rquot2);
if(settings.lquot3 && settings.rquot3) {
openingQuotes.push(settings.lquot3);
closingQuotes.push(settings.rquot3);
}
}
var level = -1,
maxLevel = openingQuotes.length - 1;
for(var i = 0, len = text.length; i < len; i++) {
var letter = text[i];
if(letter === lquot) {
level++;
if(level > maxLevel) {
level = maxLevel;
}
bufText.push(openingQuotes[level]);
} else if(letter === rquot) {
if(level <= -1) {
level = 0;
}
bufText.push(closingQuotes[level]);
level--;
if(level < -1) {
level = -1;
}
} else {
bufText.push(letter);
}
}
return bufText.join('');
};
Typograf._langs = ['en', 'ru'];

@@ -323,18 +365,7 @@ Typograf._privateLabel = '\uDBFF';

var lang = this._lang || this._prefs.lang,
commonLetter = this.data('common/letter'),
langLetter = this.data(lang + '/letter');
commonLetter = Typograf.data('common/letter'),
langLetter = Typograf.data(lang + '/letter');
return commonLetter === langLetter || !lang ? commonLetter : commonLetter + langLetter;
},
/**
* Get data for use in rules.
* This is used in regular expressions in rules.
*
* @param {string} key
* @return {*}
*/
data: function(key) {
return this._data[key];
},
_data: {},
_fixLineEnd: function(text) {

@@ -753,3 +784,3 @@ return text

Typograf.data('common/quot', '«‹»›„‚“‟‘‛”’"\'');
Typograf.data('common/quot', '«‹»›„‚“‟‘‛”’"');

@@ -1005,15 +1036,2 @@ Typograf.data('en/letter', 'a-z');

Typograf.rule({
name: 'common/other/repeatWord',
sortIndex: 1200,
func: function(text) {
var re = '([' +
this.letters() +
'\u0301]+) \\1([;:,.?! \n])';
return text.replace(new RegExp(re, 'gi'), '$1$2');
},
disabled: true
});
Typograf.rule({
name: 'common/number/fraction',

@@ -1046,2 +1064,15 @@ sortIndex: 1120,

Typograf.rule({
name: 'common/other/repeatWord',
sortIndex: 1200,
func: function(text) {
var re = '([' +
this.letters() +
'\u0301]+) \\1([;:,.?! \n])';
return text.replace(new RegExp(re, 'gi'), '$1$2');
},
disabled: true
});
Typograf.rule({
name: 'common/punctuation/delDoublePunctuation',

@@ -1082,30 +1113,2 @@ sortIndex: 580,

Typograf.rule({
name: 'common/sym/arrow',
sortIndex: 1130,
func: function(text) {
return text.replace(/(^|[^-])->(?!>)/g, '$1→').replace(/(^|[^<])<-(?!-)/g, '$1←');
}
});
Typograf.rule({
name: 'common/sym/cf',
sortIndex: 1020,
func: function(text) {
var re = new RegExp('(\\d+)( |\u00A0)?(C|F)([\\W \\.,:!\\?"\\]\\)]|$)', 'g');
return text.replace(re, '$1' + '\u2009' + '°$3$4');
}
});
Typograf.rule({
name: 'common/sym/copy',
sortIndex: 10,
func: function(text) {
return text.replace(/\(r\)/gi, '®')
.replace(/(copyright )?\((c|с)\)/gi, '©')
.replace(/\(tm\)/gi, '™');
}
});
Typograf.rule({
name: 'common/space/afterPunctuation',

@@ -1115,3 +1118,3 @@ sortIndex: 560,

var privateLabel = Typograf._privateLabel,
reExcl = new RegExp('(!|;|\\?)([^!;?\\s[)' + privateLabel + this.data('common/quot') + '])', 'g'),
reExcl = new RegExp('(!|;|\\?)([^!;?\\s[)' + privateLabel + Typograf.data('common/quot') + '])', 'g'),
reComma = new RegExp('(\\D)(,|:)([^,:.?\\s\\/' + privateLabel + '])', 'g');

@@ -1207,2 +1210,30 @@

Typograf.rule({
name: 'common/sym/arrow',
sortIndex: 1130,
func: function(text) {
return text.replace(/(^|[^-])->(?!>)/g, '$1→').replace(/(^|[^<])<-(?!-)/g, '$1←');
}
});
Typograf.rule({
name: 'common/sym/cf',
sortIndex: 1020,
func: function(text) {
var re = new RegExp('(\\d+)( |\u00A0)?(C|F)([\\W \\.,:!\\?"\\]\\)]|$)', 'g');
return text.replace(re, '$1' + '\u2009' + '°$3$4');
}
});
Typograf.rule({
name: 'common/sym/copy',
sortIndex: 10,
func: function(text) {
return text.replace(/\(r\)/gi, '®')
.replace(/(copyright )?\((c|с)\)/gi, '©')
.replace(/\(tm\)/gi, '™');
}
});
Typograf.rule({
name: 'en/punctuation/quot',

@@ -1228,3 +1259,3 @@ sortIndex: 700,

func: function(text) {
var ruDash = this.data('ru/dash'),
var ruDash = Typograf.data('ru/dash'),
re = new RegExp(ruDash.before + '(И|и)з под' + ruDash.after, 'g');

@@ -1240,3 +1271,3 @@

func: function(text) {
var ruDash = this.data('ru/dash'),
var ruDash = Typograf.data('ru/dash'),
re = new RegExp(ruDash.before + '(И|и)з за' + ruDash.after, 'g');

@@ -1252,3 +1283,3 @@

func: function(text) {
var re = new RegExp('([a-яё]+)( | ?- ?)(ка|де|кась)' + this.data('ru/dash').after, 'g');
var re = new RegExp('([a-яё]+)( | ?- ?)(ка|де|кась)' + Typograf.data('ru/dash').after, 'g');
return text.replace(re, '$1-$3$4');

@@ -1262,3 +1293,3 @@ }

func: function(text) {
var ruDash = this.data('ru/dash'),
var ruDash = Typograf.data('ru/dash'),
re = new RegExp(ruDash.before + '([Кк]о[ей])\\s([а-яё]{3,})' + ruDash.after, 'g');

@@ -1275,5 +1306,5 @@

var name = 'ru/dash/main',
dashes = '(' + this.data('common/dash') + ')',
dashes = '(' + Typograf.data('common/dash') + ')',
reMain = new RegExp('( |\u00A0)' + dashes + '( |\\n)', 'g'),
reDirect = new RegExp('(^|\n)' + dashes + '( |\u00A0)', 'g'),
reDirect = new RegExp('(^|' + Typograf._privateLabel + ')' + dashes + '( |\u00A0)', 'gm'),
reInterval = new RegExp('(X|I|V)(?: |\u00A0)?' + dashes + '(?: |\u00A0)?(X|I|V)', 'g');

@@ -1296,4 +1327,4 @@

func: function(text) {
var part = '(' + this.data('ru/month').join('|') + ')',
re = new RegExp(part + ' ?(' + this.data('common/dash') + ') ?' + part, 'gi');
var part = '(' + Typograf.data('ru/month').join('|') + ')',
re = new RegExp(part + ' ?(' + Typograf.data('common/dash') + ') ?' + part, 'gi');

@@ -1309,3 +1340,3 @@ return text.replace(re, '$1' + this.setting('ru/dash/main', 'dashInterval') + '$3');

var re = new RegExp('(верно|довольно|опять|прямо|так|вс[её]|действительно|неужели)\\s(таки)' +
this.data('ru/dash').after, 'g');
Typograf.data('ru/dash').after, 'g');

@@ -1316,12 +1347,2 @@ return text.replace(re, '$1-$2$3');

(function() {
var words = [
'откуда', 'куда', 'где',
'когда', 'зачем', 'почему',
'как', 'како[ейм]', 'какая', 'каки[емх]', 'какими', 'какую',
'что', 'чего', 'че[йм]', 'чьим?',
'кто', 'кого', 'кому', 'кем'
];
Typograf.rule({

@@ -1331,3 +1352,12 @@ name: 'ru/dash/to',

func: function(text) {
var re = new RegExp('(' + words.join('|') + ')( | ?- ?)(то|либо|нибудь)' + this.data('ru/dash').after, 'gi');
var words = [
'откуда', 'куда', 'где',
'когда', 'зачем', 'почему',
'как', 'како[ейм]', 'какая', 'каки[емх]', 'какими', 'какую',
'что', 'чего', 'че[йм]', 'чьим?',
'кто', 'кого', 'кому', 'кем'
],
re = new RegExp('(' + words.join('|') + ')( | ?- ?)(то|либо|нибудь)' +
Typograf.data('ru/dash').after, 'gi');
return text.replace(re, '$1-$3$4');

@@ -1337,4 +1367,2 @@ }

})();
Typograf.rule({

@@ -1344,4 +1372,4 @@ name: 'ru/dash/weekday',

func: function(text) {
var part = '(' + this.data('ru/weekday').join('|') + ')',
re = new RegExp(part + ' ?(' + this.data('common/dash') + ') ?' + part, 'gi');
var part = '(' + Typograf.data('ru/weekday').join('|') + ')',
re = new RegExp(part + ' ?(' + Typograf.data('common/dash') + ') ?' + part, 'gi');

@@ -1372,4 +1400,4 @@ return text.replace(re, '$1' + this.setting('ru/dash/main', 'dashInterval') + '$3');

var space = '( |\u00A0)',
monthCase = this.data('ru/monthCase').join('|'),
weekday = this.data('ru/weekday').join('|'),
monthCase = Typograf.data('ru/monthCase').join('|'),
weekday = Typograf.data('ru/weekday').join('|'),
re = new RegExp('(\\d)' + space + '(' + monthCase + '),' + space + '(' + weekday + ')', 'gi');

@@ -1485,3 +1513,3 @@

func: function(text) {
var re = new RegExp('(\\d{1,2}) (' + this.data('ru/shortMonth').join('|') + ')', 'gi');
var re = new RegExp('(\\d{1,2}) (' + Typograf.data('ru/shortMonth').join('|') + ')', 'gi');
return text.replace(re, '$1\u00A0$2');

@@ -1635,3 +1663,5 @@ }

lquot2: '„',
rquot2: '“'
rquot2: '“',
lquot3: '‚',
rquot3: '‘'
}

@@ -1638,0 +1668,0 @@ });

/*! Typograf | © 2015 Denis Seleznev | https://github.com/typograf/typograf/ */
!function(e,n){"function"==typeof define&&define.amd?define("typograf",[],n):"object"==typeof exports?module.exports=n():e.Typograf=n()}(this,function(){"use strict";function e(e){this._prefs="object"==typeof e?e:{},this._settings={},this._enabledRules={},this._replaceLabel=this._replaceLabel.bind(this),this._pasteLabel=this._pasteLabel.bind(this),this._initSafeTags(),this._rules.forEach(this._prepareRule,this),this._prefs.disable&&this.disable(this._prefs.disable),this._prefs.enable&&this.enable(this._prefs.enable)}return e.rule=function(n){return n.enabled=n.enabled===!1||n.disabled===!0?!1:!0,n._lang=n.name.split("/")[0],n.sortIndex=n.sortIndex||0,e.prototype._rules.push(n),e._needSortRules&&this._sortRules(),this},e.innerRule=function(n){return e.prototype._innerRules.push(n),n._lang=n.name.split("/")[0],n.sortIndex=n.sortIndex||0,e._needSortRules&&this._sortInnerRules(),this},e.data=function(n,r){e.prototype._data[n]=r},e._sortRules=function(){e.prototype._rules.sort(function(e,n){return e.sortIndex>n.sortIndex?1:-1})},e._sortInnerRules=function(){e.prototype._innerRules.sort(function(e,n){return e.sortIndex>n.sortIndex?1:-1})},e._quot=function(n,r){var t="\\d"+this.letters()+"\u0301",a=e._privateLabel,u=r.lquot,s=r.rquot,o=r.lquot2,i=r.rquot2,c='[\xab\xbb\u201e\u201c\u201d"]',l="["+t+")!?.:;#*,]*?",p=new RegExp('"([\u2026'+t+"])","gi"),d=new RegExp("("+l+')"('+l+")","gi"),f=new RegExp(i+"([^"+o+i+"]*?)"+i,"g"),g=new RegExp(o+"([^"+o+i+"]*?)"+o,"g"),m=new RegExp(o,"g"),h=new RegExp(i,"g"),$=new RegExp(c,"g"),x=new RegExp("^(s)?("+c+")","g"),b=new RegExp("(^|\\s)"+c+a,"g"),_=new RegExp(a+c+"([s!?.:;#*,]|$)","g");return n=n.replace($,'"').replace(p,o+"$1").replace(d,"$1"+i+"$2").replace(b,"$1"+o+a).replace(_,a+i+"$1").replace(x,"$1"+o).replace(new RegExp("(^|\\w|\\s)"+i+o,"g"),"$1"+o+o),u===o&&s===i?n=n.replace(m,u).replace(h,s).replace(new RegExp(u+u,"g"),u).replace(new RegExp(s+s,"g"),s):(n=n.replace(f,i+"$1"+s).replace(g,u+"$1"+o),(-1===n.search(u)||-1===n.search(s))&&(n=n.replace(m,u).replace(h,s))),n},e._langs=["en","ru"],e._privateLabel="\udbff",e.prototype={constructor:e,execute:function(e,n){n=n||{};var r=this,t=n.lang||this._prefs.lang||"common",a={},u={},s="undefined"==typeof n.mode?this._prefs.mode:n.mode,o=function(n){var r=n._lang;"common"!==r&&r!==t||!this.enabled(n.name)||(this._onBeforeRule&&this._onBeforeRule(e),e=n.func.call(this,e,this._settings[n.name]),this._onAfterRule&&this._onAfterRule(e))},i=function(e){u[e]&&u[e].forEach(o,r),a[e]&&a[e].forEach(o,r)};return this._lang=t,(e=""+e)?(e=this._fixLineEnd(e),this._innerRules.forEach(function(e){var n=e.queue;u[n]=u[n]||[],u[n].push(e)},this),this._rules.forEach(function(e){var n=e.queue;a[n]=a[n]||[],a[n].push(e)},this),this._isHTML=-1!==e.search(/<[a-z!]/i),i("start"),this._isHTML&&(e=this._hideSafeTags(e)),e=this._utfication(e),i(),e=this._modification(e,s),this._isHTML&&(e=this._showSafeTags(e)),i("end"),this._lang=null,this._isHTML=null,e):""},setting:function(e,n,r){return arguments.length<=2?this._settings[e]&&this._settings[e][n]:(this._settings[e]=this._settings[e]||{},this._settings[e][n]=r,this)},enabled:function(e){return this._enabledRules[e]},disabled:function(e){return!this._enabledRules[e]},enable:function(e){return this._enable(e,!0)},disable:function(e){return this._enable(e,!1)},addSafeTag:function(e,n){this._safeTags.push([e,n])},letters:function(){var e=this._lang||this._prefs.lang,n=this.data("common/letter"),r=this.data(e+"/letter");return n!==r&&e?n+r:n},data:function(e){return this._data[e]},_data:{},_fixLineEnd:function(e){return e.replace(/\r\n/g,"\n").replace(/\r/g,"\n")},_prepareRule:function(e){var n=e.name;this._settings[n]=e.settings||{},this._enabledRules[n]=e.enabled},_enable:function(e,n){return Array.isArray(e)?e.forEach(function(e){this._enableByMask(e,n)},this):this._enableByMask(e,n),this},_enableByMask:function(e,n){var r;-1!==e.search(/\*/)?(r=new RegExp(e.replace(/\//g,"\\/").replace(/\*/g,".*")),this._rules.forEach(function(e){var t=e.name;r.test(t)&&(this._enabledRules[t]=n)},this)):this._enabledRules[e]=n},_rules:[],_innerRules:[],_initSafeTags:function(){this._safeTags=[["<!--","-->"],["<!ENTITY",">"],["<!DOCTYPE",">"],["<\\?xml","\\?>"],["<!\\[CDATA\\[","\\]\\]>"]],["code","kbd","object","pre","samp","script","style","var"].forEach(function(e){this._safeTags.push(["<"+e+"(\\s[^>]*?)?>","</"+e+">"])},this)},_hideSafeTags:function(e){return this._hiddenSafeTags={},this._iLabel=0,this._safeTags.forEach(function(n){var r=new RegExp(n[0]+"[^]*?"+n[1],"gi");e=e.replace(r,this._pasteLabel)},this),this._hideHTMLTags(e)},_getPrivateLabel:function(n){var r=e._privateLabel;return r+"tf"+n+r},_pasteLabel:function(e){var n=this._getPrivateLabel(this._iLabel);return this._hiddenSafeTags[n]=e,this._iLabel++,n},_replaceLabel:function(e){return this._hiddenSafeTags[e]},_hideHTMLTags:function(e){return e.replace(/<[a-z\/][^]*?>/gi,this._pasteLabel)},_showSafeTags:function(n){for(var r=e._privateLabel,t=new RegExp(r+"tf\\d+"+r,"g"),a=new RegExp(r+"tf\\d"),u=0;u<this._safeTags.length&&(n=n.replace(t,this._replaceLabel),-1!==n.search(a));u++);return delete this._hiddenSafeTags,n},_utfication:function(e){return-1!==e.search(/&#/)&&(e=this._decHexToUtf(e)),-1!==e.search(/&[a-z]/i)&&this.entities.forEach(function(n){e=e.replace(n[3],n[2])}),e},_decHexToUtf:function(e){return e.replace(/&#(\d{1,6});/gi,function(e,n){return String.fromCharCode(parseInt(n,10))}).replace(/&#x([\da-f]{1,6});/gi,function(e,n){return String.fromCharCode(parseInt(n,16))})},_modification:function(e,n){if("name"===n||"digit"===n){var r="name"===n?0:1;this.entities.forEach(function(n){n[r]&&(e=e.replace(n[4],n[r]))})}return e}},e.prototype.entities=[],[["nbsp",160],["iexcl",161],["cent",162],["pound",163],["curren",164],["yen",165],["brvbar",166],["sect",167],["uml",168],["copy",169],["ordf",170],["laquo",171],["not",172],["shy",173],["reg",174],["macr",175],["deg",176],["plusmn",177],["sup2",178],["sup3",179],["acute",180],["micro",181],["para",182],["middot",183],["cedil",184],["sup1",185],["ordm",186],["raquo",187],["frac14",188],["frac12",189],["frac34",190],["iquest",191],["Agrave",192],["Aacute",193],["Acirc",194],["Atilde",195],["Auml",196],["Aring",197],["AElig",198],["Ccedil",199],["Egrave",200],["Eacute",201],["Ecirc",202],["Euml",203],["Igrave",204],["Iacute",205],["Icirc",206],["Iuml",207],["ETH",208],["Ntilde",209],["Ograve",210],["Oacute",211],["Ocirc",212],["Otilde",213],["Ouml",214],["times",215],["Oslash",216],["Ugrave",217],["Uacute",218],["Ucirc",219],["Uuml",220],["Yacute",221],["THORN",222],["szlig",223],["agrave",224],["aacute",225],["acirc",226],["atilde",227],["auml",228],["aring",229],["aelig",230],["ccedil",231],["egrave",232],["eacute",233],["ecirc",234],["euml",235],["igrave",236],["iacute",237],["icirc",238],["iuml",239],["eth",240],["ntilde",241],["ograve",242],["oacute",243],["ocirc",244],["otilde",245],["ouml",246],["divide",247],["oslash",248],["ugrave",249],["uacute",250],["ucirc",251],["uuml",252],["yacute",253],["thorn",254],["yuml",255],["fnof",402],["Alpha",913],["Beta",914],["Gamma",915],["Delta",916],["Epsilon",917],["Zeta",918],["Eta",919],["Theta",920],["Iota",921],["Kappa",922],["Lambda",923],["Mu",924],["Nu",925],["Xi",926],["Omicron",927],["Pi",928],["Rho",929],["Sigma",931],["Tau",932],["Upsilon",933],["Phi",934],["Chi",935],["Psi",936],["Omega",937],["alpha",945],["beta",946],["gamma",947],["delta",948],["epsilon",949],["zeta",950],["eta",951],["theta",952],["iota",953],["kappa",954],["lambda",955],["mu",956],["nu",957],["xi",958],["omicron",959],["pi",960],["rho",961],["sigmaf",962],["sigma",963],["tau",964],["upsilon",965],["phi",966],["chi",967],["psi",968],["omega",969],["thetasym",977],["upsih",978],["piv",982],["bull",8226],["hellip",8230],["prime",8242],["Prime",8243],["oline",8254],["frasl",8260],["weierp",8472],["image",8465],["real",8476],["trade",8482],["alefsym",8501],["larr",8592],["uarr",8593],["rarr",8594],["darr",8595],["harr",8596],["crarr",8629],["lArr",8656],["uArr",8657],["rArr",8658],["dArr",8659],["hArr",8660],["forall",8704],["part",8706],["exist",8707],["empty",8709],["nabla",8711],["isin",8712],["notin",8713],["ni",8715],["prod",8719],["sum",8721],["minus",8722],["lowast",8727],["radic",8730],["prop",8733],["infin",8734],["ang",8736],["and",8743],["or",8744],["cap",8745],["cup",8746],["int",8747],["there4",8756],["sim",8764],["cong",8773],["asymp",8776],["ne",8800],["equiv",8801],["le",8804],["ge",8805],["sub",8834],["sup",8835],["nsub",8836],["sube",8838],["supe",8839],["oplus",8853],["otimes",8855],["perp",8869],["sdot",8901],["lceil",8968],["rceil",8969],["lfloor",8970],["rfloor",8971],["lang",9001],["rang",9002],["spades",9824],["clubs",9827],["hearts",9829],["diams",9830],["loz",9674],["OElig",338],["oelig",339],["Scaron",352],["scaron",353],["Yuml",376],["circ",710],["tilde",732],["ensp",8194],["emsp",8195],["thinsp",8201],["zwnj",8204],["zwj",8205],["lrm",8206],["rlm",8207],["ndash",8211],["mdash",8212],["lsquo",8216],["rsquo",8217],["sbquo",8218],["ldquo",8220],["rdquo",8221],["bdquo",8222],["dagger",8224],["Dagger",8225],["permil",8240],["lsaquo",8249],["rsaquo",8250],["euro",8364]].forEach(function(n){var r=n[0],t=n[1],a=String.fromCharCode(t),u=["&"+r+";","&#"+t+";",a,new RegExp("&"+r+";","g"),new RegExp(a,"g")];e.prototype.entities.push(u)},this),e.data("common/dash","--?|\u2012|\u2013|\u2014"),e.data("common/letter","a-z"),e.data("common/quot","\xab\u2039\xbb\u203a\u201e\u201a\u201c\u201f\u2018\u201b\u201d\u2019\"'"),e.data("en/letter","a-z"),e.data("ru/letter","\u0430-\u044f\u0451"),e.data("ru/month",["\u044f\u043d\u0432\u0430\u0440\u044c","\u0444\u0435\u0432\u0440\u0430\u043b\u044c","\u043c\u0430\u0440\u0442","\u0430\u043f\u0440\u0435\u043b\u044c","\u043c\u0430\u0439","\u0438\u044e\u043d\u044c","\u0438\u044e\u043b\u044c","\u0430\u0432\u0433\u0443\u0441\u0442","\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c","\u043e\u043a\u0442\u044f\u0431\u0440\u044c","\u043d\u043e\u044f\u0431\u0440\u044c","\u0434\u0435\u043a\u0430\u0431\u0440\u044c"]),e.data("ru/monthCase",["\u044f\u043d\u0432\u0430\u0440\u044f","\u0444\u0435\u0432\u0440\u0430\u043b\u044f","\u043c\u0430\u0440\u0442\u0430","\u0430\u043f\u0440\u0435\u043b\u044f","\u043c\u0430\u044f","\u0438\u044e\u043d\u044f","\u0438\u044e\u043b\u044f","\u0430\u0432\u0433\u0443\u0441\u0442\u0430","\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f","\u043e\u043a\u0442\u044f\u0431\u0440\u044f","\u043d\u043e\u044f\u0431\u0440\u044f","\u0434\u0435\u043a\u0430\u0431\u0440\u044f"]),e.data("ru/shortMonth",["\u044f\u043d\u0432","\u0444\u0435\u0432","\u043c\u0430\u0440","\u0430\u043f\u0440","\u043c\u0430[\u0435\u0439\u044f]","\u0438\u044e\u043d","\u0438\u044e\u043b","\u0430\u0432\u0433","\u0441\u0435\u043d","\u043e\u043a\u0442","\u043d\u043e\u044f","\u0434\u0435\u043a"]),e.data("ru/weekday",["\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a","\u0432\u0442\u043e\u0440\u043d\u0438\u043a","\u0441\u0440\u0435\u0434\u0430","\u0447\u0435\u0442\u0432\u0435\u0440\u0433","\u043f\u044f\u0442\u043d\u0438\u0446\u0430","\u0441\u0443\u0431\u0431\u043e\u0442\u0430","\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435"]),e.rule({name:"common/html/escape",sortIndex:110,queue:"end",func:function(e){var n={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;","/":"&#x2F;"};return e.replace(/[&<>"'\/]/g,function(e){return n[e]})},disabled:!0}),e.rule({name:"common/html/mail",sortIndex:2e3,func:function(e){return e.replace(/(^|[\s;(])([\w\-.]{2,})@([\w\-.]{2,})\.([a-z]{2,6})([)\s.,!?]|$)/gi,'$1<a href="mailto:$2@$3.$4">$2@$3.$4</a>$5')},disabled:!0}),e.rule({name:"common/html/nbr",sortIndex:110,queue:"start",func:function(e){return-1===e.search(/<br/)?e.replace(/\n/g,"<br/>\n"):e},disabled:!0}),e.rule({name:"common/html/pbr",sortIndex:90,queue:"end",func:function(e){return-1===e.search(/<(p|br)[\s\/>]/)&&(-1===e.search(/\n/)?e="<p>"+e+"</p>":(e="<p>"+e.replace(/\n\n/g,"</p>\n<p>")+"</p>",e=e.replace(/([^>])\n/g,"$1<br/>\n"))),e},disabled:!0}),e.rule({name:"common/html/stripTags",sortIndex:100,queue:"end",func:function(e){return e.replace(/<\/?[^>]+>/g,"")},disabled:!0}),e.rule({name:"common/html/url",sortIndex:2010,func:function(e){var n="(http|https|ftp|telnet|news|gopher|file|wais)://",r="([a-zA-Z0-9/+-=%&:_.~?]+[a-zA-Z0-9#+]*)",t=new RegExp(n+r,"g");return e.replace(t,function(e,n,r){r=r.replace(/([^\/]+\/?)(\?|#)$/,"$1").replace(/^([^\/]+)\/$/,"$1"),"http"===n?r=r.replace(/^([^\/]+)(:80)([^\d]|\/|$)/,"$1$3"):"https"===n&&(r=r.replace(/^([^\/]+)(:443)([^\d]|\/|$)/,"$1$3"));var t=r,a=n+"://"+r,u='<a href="'+a+'">';return"http"===n||"https"===n?(t=t.replace(/^www\./,""),u+("http"===n?t:n+"://"+t)+"</a>"):u+a+"</a>"})},disabled:!0}),e.rule({name:"common/nbsp/afterNumber",sortIndex:615,func:function(e){var n="(^|\\D)(\\d{1,5}) (["+this.letters()+"]{2,})";return e.replace(new RegExp(n,"gi"),"$1$2\xa0$3")}}),e.rule({name:"common/nbsp/afterPara",sortIndex:610,func:function(e){return e.replace(/\xa7 ?(\d|I|V|X)/g,"\xa7\xa0$1")}}),e.rule({name:"common/nbsp/afterShortWord",sortIndex:590,func:function(e,n){var r=n.lengthShortWord,t="(^| |\xa0)(["+this.letters()+"]{1,"+r+"})(\\.?) ",a=new RegExp(t,"gi");return e.replace(a,"$1$2$3\xa0").replace(a,"$1$2$3\xa0")},settings:{lengthShortWord:2}}),e.rule({name:"common/nbsp/beforeShortLastWord",sortIndex:620,func:function(e,n){var r=n.lengthLastWord,t=".,?!:;",a=new RegExp("([^"+t+"]) (["+this.letters()+"]{1,"+r+"}["+t+"])","gi");return e.replace(a,"$1\xa0$2")},settings:{lengthLastWord:3}}),e.rule({name:"common/nbsp/dpi",sortIndex:1150,func:function(e){return e.replace(/(\d) ?(lpi|dpi)(?!\w)/,"$1\xa0$2")}}),function(){function n(e,n,r,t){return n+r.replace(/([^\u00A0])\u00A0([^\u00A0])/g,"$1 $2")+t}e.rule({name:"common/nbsp/nowrap",sortIndex:100,queue:"start",func:function(e){return e.replace(/(<nowrap>)(.*?)(<\/nowrap>)/g,n).replace(/(<nobr>)(.*?)(<\/nobr>)/g,n)}})}(),e.rule({name:"common/other/repeatWord",sortIndex:1200,func:function(e){var n="(["+this.letters()+"\u0301]+) \\1([;:,.?! \n])";return e.replace(new RegExp(n,"gi"),"$1$2")},disabled:!0}),e.rule({name:"common/number/fraction",sortIndex:1120,func:function(e){return e.replace(/(^|\D)1\/2(\D|$)/g,"$1\xbd$2").replace(/(^|\D)1\/4(\D|$)/g,"$1\xbc$2").replace(/(^|\D)3\/4(\D|$)/g,"$1\xbe$2")}}),e.rule({name:"common/number/plusMinus",sortIndex:1010,func:function(e){var n=new RegExp("(^| |\\>|\xa0)\\+-(\\d)","g");return e.replace(n,"$1\xb1$2").replace(/(^\s*)\+-(\s*$)/g,"$1\xb1$2")}}),e.rule({name:"common/number/times",sortIndex:1050,func:function(e){return e.replace(/(\d) ?(x|\u0445) ?(\d)/g,"$1\xd7$3")}}),e.rule({name:"common/punctuation/delDoublePunctuation",sortIndex:580,func:function(e){return e.replace(/(,|:|;|\?){2,}/g,"$1")}}),e.rule({name:"common/punctuation/exclamation",sortIndex:1150,func:function(e){return e.replace(/(^|[^!])!{2}($|[^!])/,"$1!$2").replace(/(^|[^!])!{4}($|[^!])/,"$1!!!$2")}}),e.rule({name:"common/punctuation/exclamationQuestion",sortIndex:1140,func:function(e){var n=new RegExp("(^|[^!])!\\?([^?]|$)","g");return e.replace(n,"$1?!$2")}}),e.rule({name:"common/punctuation/hellip",sortIndex:20,func:function(e){return e.replace(/(^|[^.])\.{3,4}([^.]|$)/g,"$1\u2026$2")}}),e.rule({name:"common/sym/arrow",sortIndex:1130,func:function(e){return e.replace(/(^|[^-])->(?!>)/g,"$1\u2192").replace(/(^|[^<])<-(?!-)/g,"$1\u2190")}}),e.rule({name:"common/sym/cf",sortIndex:1020,func:function(e){var n=new RegExp('(\\d+)( |\xa0)?(C|F)([\\W \\.,:!\\?"\\]\\)]|$)',"g");return e.replace(n,"$1\u2009\xb0$3$4")}}),e.rule({name:"common/sym/copy",sortIndex:10,func:function(e){return e.replace(/\(r\)/gi,"\xae").replace(/(copyright )?\((c|\u0441)\)/gi,"\xa9").replace(/\(tm\)/gi,"\u2122")}}),e.rule({name:"common/space/afterPunctuation",sortIndex:560,func:function(n){var r=e._privateLabel,t=new RegExp("(!|;|\\?)([^!;?\\s[)"+r+this.data("common/quot")+"])","g"),a=new RegExp("(\\D)(,|:)([^,:.?\\s\\/"+r+"])","g");return n.replace(t,"$1 $2").replace(a,"$1$2 $3")}}),e.rule({name:"common/space/delBeforePercent",sortIndex:600,func:function(e){return e.replace(/(\d)( |\u00A0)(%|\u2030|\u2031)/g,"$1$3")}}),e.rule({name:"common/space/delBeforePunctuation",sortIndex:550,func:function(e){return e.replace(/ (!|;|,|\?|\.|:)/g,"$1").replace(/\( /g,"(").replace(/([^ ])\(/g,"$1 (").replace(/ \)/g,")").replace(/\)([^!;,\?\.:])/g,") $1")}}),e.rule({name:"common/space/delLeadingBlanks",sortIndex:504,func:function(e){return e.replace(/\n[ \t]+/g,"\n")},disabled:!0}),e.rule({name:"common/space/delRepeatN",sortIndex:545,func:function(e){return e.replace(/\n{3,}/g,"\n\n")}}),e.rule({name:"common/space/delRepeatSpace",sortIndex:540,func:function(e){return e.replace(/([^\n \t])( |\t){2,}([^\n \t])/g,"$1$2$3")}}),e.rule({name:"common/space/delTrailingBlanks",sortIndex:505,func:function(e){return e.replace(/[ \t]+\n/g,"\n")}}),e.rule({name:"common/space/replaceTab",sortIndex:510,func:function(e){return e.replace(/\t/g," ")}}),e.rule({name:"common/space/trimLeft",sortIndex:530,func:String.prototype.trimLeft?function(e){return e.trimLeft()}:function(e){return e.replace(/^[\s\uFEFF\xA0]+/g,"")}}),e.rule({name:"common/space/trimRight",sortIndex:535,func:String.prototype.trimRight?function(e){return e.trimRight()}:function(e){return e.replace(/[\s\uFEFF\xA0]+$/g,"")}}),e.rule({name:"en/punctuation/quot",sortIndex:700,func:e._quot,settings:{lquot:"\u201c",rquot:"\u201d",lquot2:"\u2018",rquot2:"\u2019"}}),e.data("ru/dash",{before:"(^| |\\n)",after:"( |,|\\.|\\?|:|!|$)"}),e.rule({name:"ru/dash/izpod",sortIndex:35,func:function(e){var n=this.data("ru/dash"),r=new RegExp(n.before+"(\u0418|\u0438)\u0437 \u043f\u043e\u0434"+n.after,"g");return e.replace(r,"$1$2\u0437-\u043f\u043e\u0434$3")}}),e.rule({name:"ru/dash/izza",sortIndex:33,func:function(e){var n=this.data("ru/dash"),r=new RegExp(n.before+"(\u0418|\u0438)\u0437 \u0437\u0430"+n.after,"g");return e.replace(r,"$1$2\u0437-\u0437\u0430$3")}}),e.rule({name:"ru/dash/kade",sortIndex:31,func:function(e){var n=new RegExp("([a-\u044f\u0451]+)( | ?- ?)(\u043a\u0430|\u0434\u0435|\u043a\u0430\u0441\u044c)"+this.data("ru/dash").after,"g");return e.replace(n,"$1-$3$4")}}),e.rule({name:"ru/dash/koe",sortIndex:38,func:function(e){var n=this.data("ru/dash"),r=new RegExp(n.before+"([\u041a\u043a]\u043e[\u0435\u0439])\\s([\u0430-\u044f\u0451]{3,})"+n.after,"g");return e.replace(r,"$1$2-$3$4")}}),e.rule({name:"ru/dash/main",sortIndex:620,func:function(e){var n="ru/dash/main",r="("+this.data("common/dash")+")",t=new RegExp("( |\xa0)"+r+"( |\\n)","g"),a=new RegExp("(^|\n)"+r+"( |\xa0)","g"),u=new RegExp("(X|I|V)(?: |\xa0)?"+r+"(?: |\xa0)?(X|I|V)","g");return e.replace(t,"\xa0"+this.setting(n,"dash")+"$3").replace(a,"$1"+this.setting(n,"dash")+"\xa0").replace(u,"$1"+this.setting(n,"dashInterval")+"$3")},settings:{dash:"\u2014",dashInterval:"\u2014"}}),e.rule({name:"ru/dash/month",sortIndex:610,func:function(e){var n="("+this.data("ru/month").join("|")+")",r=new RegExp(n+" ?("+this.data("common/dash")+") ?"+n,"gi");return e.replace(r,"$1"+this.setting("ru/dash/main","dashInterval")+"$3")}}),e.rule({name:"ru/dash/taki",sortIndex:39,func:function(e){var n=new RegExp("(\u0432\u0435\u0440\u043d\u043e|\u0434\u043e\u0432\u043e\u043b\u044c\u043d\u043e|\u043e\u043f\u044f\u0442\u044c|\u043f\u0440\u044f\u043c\u043e|\u0442\u0430\u043a|\u0432\u0441[\u0435\u0451]|\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e|\u043d\u0435\u0443\u0436\u0435\u043b\u0438)\\s(\u0442\u0430\u043a\u0438)"+this.data("ru/dash").after,"g");return e.replace(n,"$1-$2$3")}}),function(){var n=["\u043e\u0442\u043a\u0443\u0434\u0430","\u043a\u0443\u0434\u0430","\u0433\u0434\u0435","\u043a\u043e\u0433\u0434\u0430","\u0437\u0430\u0447\u0435\u043c","\u043f\u043e\u0447\u0435\u043c\u0443","\u043a\u0430\u043a","\u043a\u0430\u043a\u043e[\u0435\u0439\u043c]","\u043a\u0430\u043a\u0430\u044f","\u043a\u0430\u043a\u0438[\u0435\u043c\u0445]","\u043a\u0430\u043a\u0438\u043c\u0438","\u043a\u0430\u043a\u0443\u044e","\u0447\u0442\u043e","\u0447\u0435\u0433\u043e","\u0447\u0435[\u0439\u043c]","\u0447\u044c\u0438\u043c?","\u043a\u0442\u043e","\u043a\u043e\u0433\u043e","\u043a\u043e\u043c\u0443","\u043a\u0435\u043c"];e.rule({name:"ru/dash/to",sortIndex:30,func:function(e){var r=new RegExp("("+n.join("|")+")( | ?- ?)(\u0442\u043e|\u043b\u0438\u0431\u043e|\u043d\u0438\u0431\u0443\u0434\u044c)"+this.data("ru/dash").after,"gi");return e.replace(r,"$1-$3$4")}})}(),e.rule({name:"ru/dash/weekday",sortIndex:600,func:function(e){var n="("+this.data("ru/weekday").join("|")+")",r=new RegExp(n+" ?("+this.data("common/dash")+") ?"+n,"gi");return e.replace(r,"$1"+this.setting("ru/dash/main","dashInterval")+"$3")}}),e.rule({name:"ru/date/main",sortIndex:1300,func:function(e){var n="(-|\\.|\\/)",r="(-|\\/)",t=new RegExp("(^|\\D)(\\d{4})"+n+"(\\d{2})"+n+"(\\d{2})(\\D|$)","gi"),a=new RegExp("(^|\\D)(\\d{2})"+r+"(\\d{2})"+r+"(\\d{4})(\\D|$)","gi");return e.replace(t,"$1$6.$4.$2$7").replace(a,"$1$4.$2.$6$7")}}),e.rule({name:"ru/date/weekday",sortIndex:1310,func:function(e){var n="( |\xa0)",r=this.data("ru/monthCase").join("|"),t=this.data("ru/weekday").join("|"),a=new RegExp("(\\d)"+n+"("+r+"),"+n+"("+t+")","gi");return e.replace(a,function(){var e=arguments;return e[1]+e[2]+e[3].toLowerCase()+","+e[4]+e[5].toLowerCase()})}}),e.rule({name:"ru/money/dollar",sortIndex:1140,func:function(e){var n=new RegExp("(^|[\\D]{2,})\\$ ?([\\d.,]+)","g"),r=new RegExp("(^|[\\D])([\\d.,]+) ?\\$","g"),t="$1$2\xa0$";return e.replace(n,t).replace(r,t)}}),e.rule({name:"ru/money/euro",sortIndex:1140,func:function(e){var n=new RegExp("(^|[\\D]{2,})\u20ac ?([\\d.]+)","g"),r=new RegExp("(^|[\\D])([\\d.,]+) ?\u20ac","g"),t="$1$2\xa0\u20ac";return e.replace(n,t).replace(r,t)}}),e.rule({name:"ru/money/ruble",sortIndex:1145,func:function(e){var n="$1\xa0\u20bd";return e.replace(/^(\d+)( |\u00A0)?(\u0440|\u0440\u0443\u0431)\.$/,n).replace(/(\d+)( |\u00A0)?(\u0440|\u0440\u0443\u0431)\.(?=[!?,:;])/g,n).replace(/(\d+)( |\u00A0)?(\u0440|\u0440\u0443\u0431)\.(?=\s+[A-\u042f\u0401])/g,n+".")},disabled:!0}),e.rule({name:"ru/nbsp/addr",sortIndex:1115,func:function(e){return e.replace(/(\s|^)(\u0434\u043e\u043c|\u0434\.|\u043a\u0432\.|\u043f\u043e\u0434\.|\u043f\-\u0434) *(\d+)/gi,"$1$2\xa0$3").replace(/(\s|^)(\u043c\u043a\u0440-\u043d|\u043c\u043a-\u043d|\u043c\u043a\u0440\.|\u043c\u043a\u0440\u043d)\s/gi,"$1$2\xa0").replace(/(\s|^)(\u044d\u0442\.) *(-?\d+)/gi,"$1$2\xa0$3").replace(/(\s|^)(\d+) +\u044d\u0442\u0430\u0436([^\u0430-\u044f\u0451]|$)/gi,"$1$2\xa0\u044d\u0442\u0430\u0436$3").replace(/(\s|^)\u043b\u0438\u0442\u0435\u0440\s([\u0410-\u042f]|$)/gi,"$1\u043b\u0438\u0442\u0435\u0440\xa0$2").replace(/(\s|^)(\u043e\u0431\u043b|\u043a\u0440|\u0433|\u0441\u0442|\u043f\u043e\u0441|\u0441|\u0434|\u0443\u043b|\u043f\u0435\u0440|\u043f\u0440|\u043f\u0440\-\u0442|\u043f\u0440\u043e\u0441\u043f|\u043f\u043b|\u0431\u0443\u043b|\u0431\-\u0440|\u043d\u0430\u0431|\u0448|\u0442\u0443\u043f|\u043e\u0444|\u043a\u043e\u043c\u043d?|\u0443\u0447|\u0432\u043b|\u0432\u043b\u0430\u0434|\u0441\u0442\u0440|\u043a\u043e\u0440)\. *([\u0430-\u044f\u0451a-z\d]+)/gi,"$1$2.\xa0$3")}}),e.rule({name:"ru/nbsp/afterNumberSign",sortIndex:610,func:function(e){return e.replace(/\u2116 ?(\d|\u043f\/\u043f)/g,"\u2116\xa0$1")}}),e.rule({name:"ru/nbsp/beforeParticle",sortIndex:570,func:function(e){return e.replace(/ (\u043b\u0438|\u043b\u044c|\u0436\u0435|\u0436|\u0431\u044b|\u0431)([^\u0430-\u044f\u0451\u0410-\u042f\u0401])/g,"\xa0$1$2")}}),e.rule({name:"ru/nbsp/but",sortIndex:1110,func:function(e){var n=new RegExp(",?( |\xa0|\n)(\u0430|\u043d\u043e)( |\xa0|\n)","g");return e.replace(n,",$1$2$3")}}),e.rule({name:"ru/nbsp/cc",sortIndex:1090,func:function(e){return e=e.replace(/(^|\d|V|I|X) ?\u0432(\u0432)?( |,|;|\n|$)/g,"$1\xa0\u0432$2.$3"),e.replace(/(^|\d|[IVX]) ?\u0432\.? ?\u0432\./g,"$1\xa0\u0432\u0432.")}}),e.rule({name:"ru/nbsp/dayMonth",sortIndex:1105,func:function(e){var n=new RegExp("(\\d{1,2}) ("+this.data("ru/shortMonth").join("|")+")","gi");return e.replace(n,"$1\xa0$2")}}),e.rule({name:"ru/nbsp/m",sortIndex:1030,func:function(e){var n="(\u043a\u043c|\u043c|\u0434\u043c|\u0441\u043c|\u043c\u043c)",r=new RegExp("(^|\\D)(\\d+) ?"+n+"2(\\D|$)","g"),t=new RegExp("(^|\\D)(\\d+) ?"+n+"3(\\D|$)","g");return e.replace(r,"$1$2\xa0$3\xb2$4").replace(t,"$1$2\xa0$3\xb3$4")}}),e.rule({name:"ru/nbsp/ooo",sortIndex:1100,func:function(e){return e.replace(/(^|[^a-\u044f\u0451A-\u042f\u0401])(\u041e\u041e\u041e|\u041e\u0410\u041e|\u0417\u0410\u041e|\u041d\u0418\u0418|\u041f\u0411\u041e\u042e\u041b) /g,"$1$2\xa0")}}),e.rule({name:"ru/nbsp/page",sortIndex:610,func:function(e){return e.replace(/ (\u0441\u0442\u0440|\u0433\u043b|\u0440\u0438\u0441|\u0438\u043b\u043b)\./g,"\xa0$1.")}}),e.rule({name:"ru/nbsp/xxxx",sortIndex:1060,func:function(e){return e.replace(/(^|\D)(\d{1,4}) ?\u0433(\u043e\u0434| |,|;|\.|\n|$)/g,"$1$2\xa0\u0433$3")}}),e.rule({name:"ru/nbsp/yy",sortIndex:1080,func:function(e){return e.replace(/(^|\d) ?\u0433\. ?\u0433\./g,"$1\xa0\u0433\u0433.")}}),e.rule({name:"ru/number/ordinals",sortIndex:1300,func:function(e){return e.replace(/(\d)-(\u044b\u0439|\u043e\u0439)([^\u0430-\u044f\u0451]|$)/g,"$1-\u0439$3").replace(/(\d)-\u0430\u044f([^\u0430-\u044f\u0451]|$)/g,"$1-\u044f$2").replace(/(\d)-(\u043e\u0435|\u044b\u0435)([^\u0430-\u044f\u0451]|$)/g,"$1-\u0435$3").replace(/(\d)-(\u044b\u043c|\u043e\u043c)([^\u0430-\u044f\u0451]|$)/g,"$1-\u043c$3").replace(/(\d)-\u044b\u0445([^\u0430-\u044f\u0451]|$)/g,"$1-\u0445$2").replace(/(\d)-\u043e\u0433\u043e([^\u0430-\u044f\u0451]|$)/g,"$1-\u0433\u043e$2").replace(/(\d)-\u043e\u043c\u0443([^\u0430-\u044f\u0451]|$)/g,"$1-\u043c\u0443$2").replace(/(\d)-\u044b\u043c\u0438([^\u0430-\u044f\u0451]|$)/g,"$1-\u043c\u0438$2")}}),e.rule({name:"ru/optalign/bracket",sortIndex:1001,func:function(e,n){return e.replace(/( |\u00A0)\(/g,'<span class="typograf-oa-sp-lbracket">$1</span><span class="typograf-oa-lbracket">(</span>').replace(/(^|\n)\(/g,'$1<span class="typograf-oa-n-lbracket">(</span>')},disabled:!0}).innerRule({name:"ru/optalign/bracket",func:function(e){return e.replace(/<span class="typograf-oa-(sp-lbracket|lbracket|n-lbracket)">(.*?)<\/span>/g,"$2")}}),e.rule({name:"ru/optalign/comma",sortIndex:1002,func:function(e,n){var r=new RegExp("(["+this.letters()+"\\d\u0301]+), ","gi");return e.replace(r,'$1<span class="typograf-oa-comma">,</span><span class="typograf-oa-comma-sp"> </span>')},disabled:!0}).innerRule({name:"ru/optalign/comma",func:function(e){return e.replace(/<span class="typograf-oa-(comma|comma-sp)">(.*?)<\/span>/g,"$2")}}),e.rule({name:"ru/optalign/quot",sortIndex:1e3,func:function(n){var r='(["'+this.setting("ru/punctuation/quot","lquot")+this.setting("ru/punctuation/quot","lquot2")+"])",t=new RegExp("([\\d"+this.letters()+"\\-\u0301!?.:;,]+)( |\xa0)("+r+")","gi"),a=new RegExp("(^|\n|"+e._privateLabel+")"+r,"g");return n.replace(t,'$1<span class="typograf-oa-sp-lquot">$2</span><span class="typograf-oa-lquot">$3</span>').replace(a,'$1<span class="typograf-oa-n-lquot">$2</span>')},disabled:!0}).innerRule({name:"ru/optalign/quot",func:function(e){return e.replace(/<span class="typograf-oa-(sp-lquot|lquot|n-lquot)">(.*?)<\/span>/g,"$2")}}),e.rule({name:"ru/other/accent",sortIndex:560,func:function(e){return e.replace(/([\u0430-\u044f\u0451])([\u0410\u0415\u0401\u0418\u041e\u0423\u042b\u042d\u042e\u042f])([^\u0410-\u042f\u0401\w]|$)/g,function(e,n,r,t){return n+r.toLowerCase()+"\u0301"+t})},disabled:!0}),e.rule({name:"ru/punctuation/quot",sortIndex:700,func:e._quot,settings:{lquot:"\xab",rquot:"\xbb",lquot2:"\u201e",rquot2:"\u201c"}}),e._sortRules(),e._needSortRules=!0,e});
!function(e,n){"function"==typeof define&&define.amd?define("typograf",[],n):"object"==typeof exports?module.exports=n():e.Typograf=n()}(this,function(){"use strict";function e(e){this._prefs="object"==typeof e?e:{},this._settings={},this._enabledRules={},this._replaceLabel=this._replaceLabel.bind(this),this._pasteLabel=this._pasteLabel.bind(this),this._initSafeTags(),this._rules.forEach(this._prepareRule,this),this._prefs.disable&&this.disable(this._prefs.disable),this._prefs.enable&&this.enable(this._prefs.enable)}return e.rule=function(n){return n.enabled=n.enabled===!1||n.disabled===!0?!1:!0,n._lang=n.name.split("/")[0],n.sortIndex=n.sortIndex||0,e.prototype._rules.push(n),e._needSortRules&&this._sortRules(),this},e.innerRule=function(n){return e.prototype._innerRules.push(n),n._lang=n.name.split("/")[0],n.sortIndex=n.sortIndex||0,e._needSortRules&&this._sortInnerRules(),this},e.data=function(n,r){return 1===arguments.length?e._data[n]:void(e._data[n]=r)},e._data={},e._sortRules=function(){e.prototype._rules.sort(function(e,n){return e.sortIndex>n.sortIndex?1:-1})},e._sortInnerRules=function(){e.prototype._innerRules.sort(function(e,n){return e.sortIndex>n.sortIndex?1:-1})},e._quot=function(n,r){var t="\\d"+this.letters()+"\u0301",a=e._privateLabel,u=r.lquot,o=r.rquot,s=r.lquot2,i=r.rquot2,c="["+e.data("common/quot")+"]",l="["+t+")!?.:;#*,]*?",p=new RegExp('"([\u2026'+t+"])","gi"),d=new RegExp("("+l+')"('+l+")","gi"),f=new RegExp(c,"g"),g=new RegExp("^(s)?("+c+")","g"),m=new RegExp("(^|\\s)"+c+a,"g"),h=new RegExp(a+c+"([s!?.:;#*,]|$)","g");return n=n.replace(f,'"').replace(p,u+"$1").replace(d,"$1"+o+"$2").replace(m,"$1"+u+a).replace(h,a+o+"$1").replace(g,"$1"+u).replace(new RegExp("(^|\\w|\\s)"+o+u,"g"),"$1"+u+u),s&&i?u===s&&o===i?n.replace(new RegExp(u+u,"g"),u).replace(new RegExp(o+o,"g"),o):e._innerQuot(n,r):n},e._innerQuot=function(e,n){var r=[n.lquot],t=[n.rquot],a=n.lquot,u=n.rquot,o=new Array(e.length);n.lquot2&&n.rquot2&&(r.push(n.lquot2),t.push(n.rquot2),n.lquot3&&n.rquot3&&(r.push(n.lquot3),t.push(n.rquot3)));for(var s=-1,i=r.length-1,c=0,l=e.length;l>c;c++){var p=e[c];p===a?(s++,s>i&&(s=i),o.push(r[s])):p===u?(-1>=s&&(s=0),o.push(t[s]),s--,-1>s&&(s=-1)):o.push(p)}return o.join("")},e._langs=["en","ru"],e._privateLabel="\udbff",e.prototype={constructor:e,execute:function(e,n){n=n||{};var r=this,t=n.lang||this._prefs.lang||"common",a={},u={},o="undefined"==typeof n.mode?this._prefs.mode:n.mode,s=function(n){var r=n._lang;"common"!==r&&r!==t||!this.enabled(n.name)||(this._onBeforeRule&&this._onBeforeRule(e),e=n.func.call(this,e,this._settings[n.name]),this._onAfterRule&&this._onAfterRule(e))},i=function(e){u[e]&&u[e].forEach(s,r),a[e]&&a[e].forEach(s,r)};return this._lang=t,(e=""+e)?(e=this._fixLineEnd(e),this._innerRules.forEach(function(e){var n=e.queue;u[n]=u[n]||[],u[n].push(e)},this),this._rules.forEach(function(e){var n=e.queue;a[n]=a[n]||[],a[n].push(e)},this),this._isHTML=-1!==e.search(/<[a-z!]/i),i("start"),this._isHTML&&(e=this._hideSafeTags(e)),e=this._utfication(e),i(),e=this._modification(e,o),this._isHTML&&(e=this._showSafeTags(e)),i("end"),this._lang=null,this._isHTML=null,e):""},setting:function(e,n,r){return arguments.length<=2?this._settings[e]&&this._settings[e][n]:(this._settings[e]=this._settings[e]||{},this._settings[e][n]=r,this)},enabled:function(e){return this._enabledRules[e]},disabled:function(e){return!this._enabledRules[e]},enable:function(e){return this._enable(e,!0)},disable:function(e){return this._enable(e,!1)},addSafeTag:function(e,n){this._safeTags.push([e,n])},letters:function(){var n=this._lang||this._prefs.lang,r=e.data("common/letter"),t=e.data(n+"/letter");return r!==t&&n?r+t:r},_fixLineEnd:function(e){return e.replace(/\r\n/g,"\n").replace(/\r/g,"\n")},_prepareRule:function(e){var n=e.name;this._settings[n]=e.settings||{},this._enabledRules[n]=e.enabled},_enable:function(e,n){return Array.isArray(e)?e.forEach(function(e){this._enableByMask(e,n)},this):this._enableByMask(e,n),this},_enableByMask:function(e,n){var r;-1!==e.search(/\*/)?(r=new RegExp(e.replace(/\//g,"\\/").replace(/\*/g,".*")),this._rules.forEach(function(e){var t=e.name;r.test(t)&&(this._enabledRules[t]=n)},this)):this._enabledRules[e]=n},_rules:[],_innerRules:[],_initSafeTags:function(){this._safeTags=[["<!--","-->"],["<!ENTITY",">"],["<!DOCTYPE",">"],["<\\?xml","\\?>"],["<!\\[CDATA\\[","\\]\\]>"]],["code","kbd","object","pre","samp","script","style","var"].forEach(function(e){this._safeTags.push(["<"+e+"(\\s[^>]*?)?>","</"+e+">"])},this)},_hideSafeTags:function(e){return this._hiddenSafeTags={},this._iLabel=0,this._safeTags.forEach(function(n){var r=new RegExp(n[0]+"[^]*?"+n[1],"gi");e=e.replace(r,this._pasteLabel)},this),this._hideHTMLTags(e)},_getPrivateLabel:function(n){var r=e._privateLabel;return r+"tf"+n+r},_pasteLabel:function(e){var n=this._getPrivateLabel(this._iLabel);return this._hiddenSafeTags[n]=e,this._iLabel++,n},_replaceLabel:function(e){return this._hiddenSafeTags[e]},_hideHTMLTags:function(e){return e.replace(/<[a-z\/][^]*?>/gi,this._pasteLabel)},_showSafeTags:function(n){for(var r=e._privateLabel,t=new RegExp(r+"tf\\d+"+r,"g"),a=new RegExp(r+"tf\\d"),u=0;u<this._safeTags.length&&(n=n.replace(t,this._replaceLabel),-1!==n.search(a));u++);return delete this._hiddenSafeTags,n},_utfication:function(e){return-1!==e.search(/&#/)&&(e=this._decHexToUtf(e)),-1!==e.search(/&[a-z]/i)&&this.entities.forEach(function(n){e=e.replace(n[3],n[2])}),e},_decHexToUtf:function(e){return e.replace(/&#(\d{1,6});/gi,function(e,n){return String.fromCharCode(parseInt(n,10))}).replace(/&#x([\da-f]{1,6});/gi,function(e,n){return String.fromCharCode(parseInt(n,16))})},_modification:function(e,n){if("name"===n||"digit"===n){var r="name"===n?0:1;this.entities.forEach(function(n){n[r]&&(e=e.replace(n[4],n[r]))})}return e}},e.prototype.entities=[],[["nbsp",160],["iexcl",161],["cent",162],["pound",163],["curren",164],["yen",165],["brvbar",166],["sect",167],["uml",168],["copy",169],["ordf",170],["laquo",171],["not",172],["shy",173],["reg",174],["macr",175],["deg",176],["plusmn",177],["sup2",178],["sup3",179],["acute",180],["micro",181],["para",182],["middot",183],["cedil",184],["sup1",185],["ordm",186],["raquo",187],["frac14",188],["frac12",189],["frac34",190],["iquest",191],["Agrave",192],["Aacute",193],["Acirc",194],["Atilde",195],["Auml",196],["Aring",197],["AElig",198],["Ccedil",199],["Egrave",200],["Eacute",201],["Ecirc",202],["Euml",203],["Igrave",204],["Iacute",205],["Icirc",206],["Iuml",207],["ETH",208],["Ntilde",209],["Ograve",210],["Oacute",211],["Ocirc",212],["Otilde",213],["Ouml",214],["times",215],["Oslash",216],["Ugrave",217],["Uacute",218],["Ucirc",219],["Uuml",220],["Yacute",221],["THORN",222],["szlig",223],["agrave",224],["aacute",225],["acirc",226],["atilde",227],["auml",228],["aring",229],["aelig",230],["ccedil",231],["egrave",232],["eacute",233],["ecirc",234],["euml",235],["igrave",236],["iacute",237],["icirc",238],["iuml",239],["eth",240],["ntilde",241],["ograve",242],["oacute",243],["ocirc",244],["otilde",245],["ouml",246],["divide",247],["oslash",248],["ugrave",249],["uacute",250],["ucirc",251],["uuml",252],["yacute",253],["thorn",254],["yuml",255],["fnof",402],["Alpha",913],["Beta",914],["Gamma",915],["Delta",916],["Epsilon",917],["Zeta",918],["Eta",919],["Theta",920],["Iota",921],["Kappa",922],["Lambda",923],["Mu",924],["Nu",925],["Xi",926],["Omicron",927],["Pi",928],["Rho",929],["Sigma",931],["Tau",932],["Upsilon",933],["Phi",934],["Chi",935],["Psi",936],["Omega",937],["alpha",945],["beta",946],["gamma",947],["delta",948],["epsilon",949],["zeta",950],["eta",951],["theta",952],["iota",953],["kappa",954],["lambda",955],["mu",956],["nu",957],["xi",958],["omicron",959],["pi",960],["rho",961],["sigmaf",962],["sigma",963],["tau",964],["upsilon",965],["phi",966],["chi",967],["psi",968],["omega",969],["thetasym",977],["upsih",978],["piv",982],["bull",8226],["hellip",8230],["prime",8242],["Prime",8243],["oline",8254],["frasl",8260],["weierp",8472],["image",8465],["real",8476],["trade",8482],["alefsym",8501],["larr",8592],["uarr",8593],["rarr",8594],["darr",8595],["harr",8596],["crarr",8629],["lArr",8656],["uArr",8657],["rArr",8658],["dArr",8659],["hArr",8660],["forall",8704],["part",8706],["exist",8707],["empty",8709],["nabla",8711],["isin",8712],["notin",8713],["ni",8715],["prod",8719],["sum",8721],["minus",8722],["lowast",8727],["radic",8730],["prop",8733],["infin",8734],["ang",8736],["and",8743],["or",8744],["cap",8745],["cup",8746],["int",8747],["there4",8756],["sim",8764],["cong",8773],["asymp",8776],["ne",8800],["equiv",8801],["le",8804],["ge",8805],["sub",8834],["sup",8835],["nsub",8836],["sube",8838],["supe",8839],["oplus",8853],["otimes",8855],["perp",8869],["sdot",8901],["lceil",8968],["rceil",8969],["lfloor",8970],["rfloor",8971],["lang",9001],["rang",9002],["spades",9824],["clubs",9827],["hearts",9829],["diams",9830],["loz",9674],["OElig",338],["oelig",339],["Scaron",352],["scaron",353],["Yuml",376],["circ",710],["tilde",732],["ensp",8194],["emsp",8195],["thinsp",8201],["zwnj",8204],["zwj",8205],["lrm",8206],["rlm",8207],["ndash",8211],["mdash",8212],["lsquo",8216],["rsquo",8217],["sbquo",8218],["ldquo",8220],["rdquo",8221],["bdquo",8222],["dagger",8224],["Dagger",8225],["permil",8240],["lsaquo",8249],["rsaquo",8250],["euro",8364]].forEach(function(n){var r=n[0],t=n[1],a=String.fromCharCode(t),u=["&"+r+";","&#"+t+";",a,new RegExp("&"+r+";","g"),new RegExp(a,"g")];e.prototype.entities.push(u)},this),e.data("common/dash","--?|\u2012|\u2013|\u2014"),e.data("common/letter","a-z"),e.data("common/quot",'\xab\u2039\xbb\u203a\u201e\u201a\u201c\u201f\u2018\u201b\u201d\u2019"'),e.data("en/letter","a-z"),e.data("ru/letter","\u0430-\u044f\u0451"),e.data("ru/month",["\u044f\u043d\u0432\u0430\u0440\u044c","\u0444\u0435\u0432\u0440\u0430\u043b\u044c","\u043c\u0430\u0440\u0442","\u0430\u043f\u0440\u0435\u043b\u044c","\u043c\u0430\u0439","\u0438\u044e\u043d\u044c","\u0438\u044e\u043b\u044c","\u0430\u0432\u0433\u0443\u0441\u0442","\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c","\u043e\u043a\u0442\u044f\u0431\u0440\u044c","\u043d\u043e\u044f\u0431\u0440\u044c","\u0434\u0435\u043a\u0430\u0431\u0440\u044c"]),e.data("ru/monthCase",["\u044f\u043d\u0432\u0430\u0440\u044f","\u0444\u0435\u0432\u0440\u0430\u043b\u044f","\u043c\u0430\u0440\u0442\u0430","\u0430\u043f\u0440\u0435\u043b\u044f","\u043c\u0430\u044f","\u0438\u044e\u043d\u044f","\u0438\u044e\u043b\u044f","\u0430\u0432\u0433\u0443\u0441\u0442\u0430","\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f","\u043e\u043a\u0442\u044f\u0431\u0440\u044f","\u043d\u043e\u044f\u0431\u0440\u044f","\u0434\u0435\u043a\u0430\u0431\u0440\u044f"]),e.data("ru/shortMonth",["\u044f\u043d\u0432","\u0444\u0435\u0432","\u043c\u0430\u0440","\u0430\u043f\u0440","\u043c\u0430[\u0435\u0439\u044f]","\u0438\u044e\u043d","\u0438\u044e\u043b","\u0430\u0432\u0433","\u0441\u0435\u043d","\u043e\u043a\u0442","\u043d\u043e\u044f","\u0434\u0435\u043a"]),e.data("ru/weekday",["\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a","\u0432\u0442\u043e\u0440\u043d\u0438\u043a","\u0441\u0440\u0435\u0434\u0430","\u0447\u0435\u0442\u0432\u0435\u0440\u0433","\u043f\u044f\u0442\u043d\u0438\u0446\u0430","\u0441\u0443\u0431\u0431\u043e\u0442\u0430","\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435"]),e.rule({name:"common/html/escape",sortIndex:110,queue:"end",func:function(e){var n={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;","/":"&#x2F;"};return e.replace(/[&<>"'\/]/g,function(e){return n[e]})},disabled:!0}),e.rule({name:"common/html/mail",sortIndex:2e3,func:function(e){return e.replace(/(^|[\s;(])([\w\-.]{2,})@([\w\-.]{2,})\.([a-z]{2,6})([)\s.,!?]|$)/gi,'$1<a href="mailto:$2@$3.$4">$2@$3.$4</a>$5')},disabled:!0}),e.rule({name:"common/html/nbr",sortIndex:110,queue:"start",func:function(e){return-1===e.search(/<br/)?e.replace(/\n/g,"<br/>\n"):e},disabled:!0}),e.rule({name:"common/html/pbr",sortIndex:90,queue:"end",func:function(e){return-1===e.search(/<(p|br)[\s\/>]/)&&(-1===e.search(/\n/)?e="<p>"+e+"</p>":(e="<p>"+e.replace(/\n\n/g,"</p>\n<p>")+"</p>",e=e.replace(/([^>])\n/g,"$1<br/>\n"))),e},disabled:!0}),e.rule({name:"common/html/stripTags",sortIndex:100,queue:"end",func:function(e){return e.replace(/<\/?[^>]+>/g,"")},disabled:!0}),e.rule({name:"common/html/url",sortIndex:2010,func:function(e){var n="(http|https|ftp|telnet|news|gopher|file|wais)://",r="([a-zA-Z0-9/+-=%&:_.~?]+[a-zA-Z0-9#+]*)",t=new RegExp(n+r,"g");return e.replace(t,function(e,n,r){r=r.replace(/([^\/]+\/?)(\?|#)$/,"$1").replace(/^([^\/]+)\/$/,"$1"),"http"===n?r=r.replace(/^([^\/]+)(:80)([^\d]|\/|$)/,"$1$3"):"https"===n&&(r=r.replace(/^([^\/]+)(:443)([^\d]|\/|$)/,"$1$3"));var t=r,a=n+"://"+r,u='<a href="'+a+'">';return"http"===n||"https"===n?(t=t.replace(/^www\./,""),u+("http"===n?t:n+"://"+t)+"</a>"):u+a+"</a>"})},disabled:!0}),e.rule({name:"common/nbsp/afterNumber",sortIndex:615,func:function(e){var n="(^|\\D)(\\d{1,5}) (["+this.letters()+"]{2,})";return e.replace(new RegExp(n,"gi"),"$1$2\xa0$3")}}),e.rule({name:"common/nbsp/afterPara",sortIndex:610,func:function(e){return e.replace(/\xa7 ?(\d|I|V|X)/g,"\xa7\xa0$1")}}),e.rule({name:"common/nbsp/afterShortWord",sortIndex:590,func:function(e,n){var r=n.lengthShortWord,t="(^| |\xa0)(["+this.letters()+"]{1,"+r+"})(\\.?) ",a=new RegExp(t,"gi");return e.replace(a,"$1$2$3\xa0").replace(a,"$1$2$3\xa0")},settings:{lengthShortWord:2}}),e.rule({name:"common/nbsp/beforeShortLastWord",sortIndex:620,func:function(e,n){var r=n.lengthLastWord,t=".,?!:;",a=new RegExp("([^"+t+"]) (["+this.letters()+"]{1,"+r+"}["+t+"])","gi");return e.replace(a,"$1\xa0$2")},settings:{lengthLastWord:3}}),e.rule({name:"common/nbsp/dpi",sortIndex:1150,func:function(e){return e.replace(/(\d) ?(lpi|dpi)(?!\w)/,"$1\xa0$2")}}),function(){function n(e,n,r,t){return n+r.replace(/([^\u00A0])\u00A0([^\u00A0])/g,"$1 $2")+t}e.rule({name:"common/nbsp/nowrap",sortIndex:100,queue:"start",func:function(e){return e.replace(/(<nowrap>)(.*?)(<\/nowrap>)/g,n).replace(/(<nobr>)(.*?)(<\/nobr>)/g,n)}})}(),e.rule({name:"common/number/fraction",sortIndex:1120,func:function(e){return e.replace(/(^|\D)1\/2(\D|$)/g,"$1\xbd$2").replace(/(^|\D)1\/4(\D|$)/g,"$1\xbc$2").replace(/(^|\D)3\/4(\D|$)/g,"$1\xbe$2")}}),e.rule({name:"common/number/plusMinus",sortIndex:1010,func:function(e){var n=new RegExp("(^| |\\>|\xa0)\\+-(\\d)","g");return e.replace(n,"$1\xb1$2").replace(/(^\s*)\+-(\s*$)/g,"$1\xb1$2")}}),e.rule({name:"common/number/times",sortIndex:1050,func:function(e){return e.replace(/(\d) ?(x|\u0445) ?(\d)/g,"$1\xd7$3")}}),e.rule({name:"common/other/repeatWord",sortIndex:1200,func:function(e){var n="(["+this.letters()+"\u0301]+) \\1([;:,.?! \n])";return e.replace(new RegExp(n,"gi"),"$1$2")},disabled:!0}),e.rule({name:"common/punctuation/delDoublePunctuation",sortIndex:580,func:function(e){return e.replace(/(,|:|;|\?){2,}/g,"$1")}}),e.rule({name:"common/punctuation/exclamation",sortIndex:1150,func:function(e){return e.replace(/(^|[^!])!{2}($|[^!])/,"$1!$2").replace(/(^|[^!])!{4}($|[^!])/,"$1!!!$2")}}),e.rule({name:"common/punctuation/exclamationQuestion",sortIndex:1140,func:function(e){var n=new RegExp("(^|[^!])!\\?([^?]|$)","g");return e.replace(n,"$1?!$2")}}),e.rule({name:"common/punctuation/hellip",sortIndex:20,func:function(e){return e.replace(/(^|[^.])\.{3,4}([^.]|$)/g,"$1\u2026$2")}}),e.rule({name:"common/space/afterPunctuation",sortIndex:560,func:function(n){var r=e._privateLabel,t=new RegExp("(!|;|\\?)([^!;?\\s[)"+r+e.data("common/quot")+"])","g"),a=new RegExp("(\\D)(,|:)([^,:.?\\s\\/"+r+"])","g");return n.replace(t,"$1 $2").replace(a,"$1$2 $3")}}),e.rule({name:"common/space/delBeforePercent",sortIndex:600,func:function(e){return e.replace(/(\d)( |\u00A0)(%|\u2030|\u2031)/g,"$1$3")}}),e.rule({name:"common/space/delBeforePunctuation",sortIndex:550,func:function(e){return e.replace(/ (!|;|,|\?|\.|:)/g,"$1").replace(/\( /g,"(").replace(/([^ ])\(/g,"$1 (").replace(/ \)/g,")").replace(/\)([^!;,\?\.:])/g,") $1")}}),e.rule({name:"common/space/delLeadingBlanks",sortIndex:504,func:function(e){return e.replace(/\n[ \t]+/g,"\n")},disabled:!0}),e.rule({name:"common/space/delRepeatN",sortIndex:545,func:function(e){return e.replace(/\n{3,}/g,"\n\n")}}),e.rule({name:"common/space/delRepeatSpace",sortIndex:540,func:function(e){return e.replace(/([^\n \t])( |\t){2,}([^\n \t])/g,"$1$2$3")}}),e.rule({name:"common/space/delTrailingBlanks",sortIndex:505,func:function(e){return e.replace(/[ \t]+\n/g,"\n")}}),e.rule({name:"common/space/replaceTab",sortIndex:510,func:function(e){return e.replace(/\t/g," ")}}),e.rule({name:"common/space/trimLeft",sortIndex:530,func:String.prototype.trimLeft?function(e){return e.trimLeft()}:function(e){return e.replace(/^[\s\uFEFF\xA0]+/g,"")}}),e.rule({name:"common/space/trimRight",sortIndex:535,func:String.prototype.trimRight?function(e){return e.trimRight()}:function(e){return e.replace(/[\s\uFEFF\xA0]+$/g,"")}}),e.rule({name:"common/sym/arrow",sortIndex:1130,func:function(e){return e.replace(/(^|[^-])->(?!>)/g,"$1\u2192").replace(/(^|[^<])<-(?!-)/g,"$1\u2190")}}),e.rule({name:"common/sym/cf",sortIndex:1020,func:function(e){var n=new RegExp('(\\d+)( |\xa0)?(C|F)([\\W \\.,:!\\?"\\]\\)]|$)',"g");return e.replace(n,"$1\u2009\xb0$3$4")}}),e.rule({name:"common/sym/copy",sortIndex:10,func:function(e){return e.replace(/\(r\)/gi,"\xae").replace(/(copyright )?\((c|\u0441)\)/gi,"\xa9").replace(/\(tm\)/gi,"\u2122")}}),e.rule({name:"en/punctuation/quot",sortIndex:700,func:e._quot,settings:{lquot:"\u201c",rquot:"\u201d",lquot2:"\u2018",rquot2:"\u2019"}}),e.data("ru/dash",{before:"(^| |\\n)",after:"( |,|\\.|\\?|:|!|$)"}),e.rule({name:"ru/dash/izpod",sortIndex:35,func:function(n){var r=e.data("ru/dash"),t=new RegExp(r.before+"(\u0418|\u0438)\u0437 \u043f\u043e\u0434"+r.after,"g");return n.replace(t,"$1$2\u0437-\u043f\u043e\u0434$3")}}),e.rule({name:"ru/dash/izza",sortIndex:33,func:function(n){var r=e.data("ru/dash"),t=new RegExp(r.before+"(\u0418|\u0438)\u0437 \u0437\u0430"+r.after,"g");return n.replace(t,"$1$2\u0437-\u0437\u0430$3")}}),e.rule({name:"ru/dash/kade",sortIndex:31,func:function(n){var r=new RegExp("([a-\u044f\u0451]+)( | ?- ?)(\u043a\u0430|\u0434\u0435|\u043a\u0430\u0441\u044c)"+e.data("ru/dash").after,"g");return n.replace(r,"$1-$3$4")}}),e.rule({name:"ru/dash/koe",sortIndex:38,func:function(n){var r=e.data("ru/dash"),t=new RegExp(r.before+"([\u041a\u043a]\u043e[\u0435\u0439])\\s([\u0430-\u044f\u0451]{3,})"+r.after,"g");return n.replace(t,"$1$2-$3$4")}}),e.rule({name:"ru/dash/main",sortIndex:620,func:function(n){var r="ru/dash/main",t="("+e.data("common/dash")+")",a=new RegExp("( |\xa0)"+t+"( |\\n)","g"),u=new RegExp("(^|"+e._privateLabel+")"+t+"( |\xa0)","gm"),o=new RegExp("(X|I|V)(?: |\xa0)?"+t+"(?: |\xa0)?(X|I|V)","g");return n.replace(a,"\xa0"+this.setting(r,"dash")+"$3").replace(u,"$1"+this.setting(r,"dash")+"\xa0").replace(o,"$1"+this.setting(r,"dashInterval")+"$3")},settings:{dash:"\u2014",dashInterval:"\u2014"}}),e.rule({name:"ru/dash/month",sortIndex:610,func:function(n){var r="("+e.data("ru/month").join("|")+")",t=new RegExp(r+" ?("+e.data("common/dash")+") ?"+r,"gi");return n.replace(t,"$1"+this.setting("ru/dash/main","dashInterval")+"$3")}}),e.rule({name:"ru/dash/taki",sortIndex:39,func:function(n){var r=new RegExp("(\u0432\u0435\u0440\u043d\u043e|\u0434\u043e\u0432\u043e\u043b\u044c\u043d\u043e|\u043e\u043f\u044f\u0442\u044c|\u043f\u0440\u044f\u043c\u043e|\u0442\u0430\u043a|\u0432\u0441[\u0435\u0451]|\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e|\u043d\u0435\u0443\u0436\u0435\u043b\u0438)\\s(\u0442\u0430\u043a\u0438)"+e.data("ru/dash").after,"g");return n.replace(r,"$1-$2$3")}}),e.rule({name:"ru/dash/to",sortIndex:30,func:function(n){var r=["\u043e\u0442\u043a\u0443\u0434\u0430","\u043a\u0443\u0434\u0430","\u0433\u0434\u0435","\u043a\u043e\u0433\u0434\u0430","\u0437\u0430\u0447\u0435\u043c","\u043f\u043e\u0447\u0435\u043c\u0443","\u043a\u0430\u043a","\u043a\u0430\u043a\u043e[\u0435\u0439\u043c]","\u043a\u0430\u043a\u0430\u044f","\u043a\u0430\u043a\u0438[\u0435\u043c\u0445]","\u043a\u0430\u043a\u0438\u043c\u0438","\u043a\u0430\u043a\u0443\u044e","\u0447\u0442\u043e","\u0447\u0435\u0433\u043e","\u0447\u0435[\u0439\u043c]","\u0447\u044c\u0438\u043c?","\u043a\u0442\u043e","\u043a\u043e\u0433\u043e","\u043a\u043e\u043c\u0443","\u043a\u0435\u043c"],t=new RegExp("("+r.join("|")+")( | ?- ?)(\u0442\u043e|\u043b\u0438\u0431\u043e|\u043d\u0438\u0431\u0443\u0434\u044c)"+e.data("ru/dash").after,"gi");return n.replace(t,"$1-$3$4")}}),e.rule({name:"ru/dash/weekday",sortIndex:600,func:function(n){var r="("+e.data("ru/weekday").join("|")+")",t=new RegExp(r+" ?("+e.data("common/dash")+") ?"+r,"gi");return n.replace(t,"$1"+this.setting("ru/dash/main","dashInterval")+"$3")}}),e.rule({name:"ru/date/main",sortIndex:1300,func:function(e){var n="(-|\\.|\\/)",r="(-|\\/)",t=new RegExp("(^|\\D)(\\d{4})"+n+"(\\d{2})"+n+"(\\d{2})(\\D|$)","gi"),a=new RegExp("(^|\\D)(\\d{2})"+r+"(\\d{2})"+r+"(\\d{4})(\\D|$)","gi");return e.replace(t,"$1$6.$4.$2$7").replace(a,"$1$4.$2.$6$7")}}),e.rule({name:"ru/date/weekday",sortIndex:1310,func:function(n){var r="( |\xa0)",t=e.data("ru/monthCase").join("|"),a=e.data("ru/weekday").join("|"),u=new RegExp("(\\d)"+r+"("+t+"),"+r+"("+a+")","gi");return n.replace(u,function(){var e=arguments;return e[1]+e[2]+e[3].toLowerCase()+","+e[4]+e[5].toLowerCase()})}}),e.rule({name:"ru/money/dollar",sortIndex:1140,func:function(e){var n=new RegExp("(^|[\\D]{2,})\\$ ?([\\d.,]+)","g"),r=new RegExp("(^|[\\D])([\\d.,]+) ?\\$","g"),t="$1$2\xa0$";return e.replace(n,t).replace(r,t)}}),e.rule({name:"ru/money/euro",sortIndex:1140,func:function(e){var n=new RegExp("(^|[\\D]{2,})\u20ac ?([\\d.]+)","g"),r=new RegExp("(^|[\\D])([\\d.,]+) ?\u20ac","g"),t="$1$2\xa0\u20ac";return e.replace(n,t).replace(r,t)}}),e.rule({name:"ru/money/ruble",sortIndex:1145,func:function(e){var n="$1\xa0\u20bd";return e.replace(/^(\d+)( |\u00A0)?(\u0440|\u0440\u0443\u0431)\.$/,n).replace(/(\d+)( |\u00A0)?(\u0440|\u0440\u0443\u0431)\.(?=[!?,:;])/g,n).replace(/(\d+)( |\u00A0)?(\u0440|\u0440\u0443\u0431)\.(?=\s+[A-\u042f\u0401])/g,n+".")},disabled:!0}),e.rule({name:"ru/nbsp/addr",sortIndex:1115,func:function(e){return e.replace(/(\s|^)(\u0434\u043e\u043c|\u0434\.|\u043a\u0432\.|\u043f\u043e\u0434\.|\u043f\-\u0434) *(\d+)/gi,"$1$2\xa0$3").replace(/(\s|^)(\u043c\u043a\u0440-\u043d|\u043c\u043a-\u043d|\u043c\u043a\u0440\.|\u043c\u043a\u0440\u043d)\s/gi,"$1$2\xa0").replace(/(\s|^)(\u044d\u0442\.) *(-?\d+)/gi,"$1$2\xa0$3").replace(/(\s|^)(\d+) +\u044d\u0442\u0430\u0436([^\u0430-\u044f\u0451]|$)/gi,"$1$2\xa0\u044d\u0442\u0430\u0436$3").replace(/(\s|^)\u043b\u0438\u0442\u0435\u0440\s([\u0410-\u042f]|$)/gi,"$1\u043b\u0438\u0442\u0435\u0440\xa0$2").replace(/(\s|^)(\u043e\u0431\u043b|\u043a\u0440|\u0433|\u0441\u0442|\u043f\u043e\u0441|\u0441|\u0434|\u0443\u043b|\u043f\u0435\u0440|\u043f\u0440|\u043f\u0440\-\u0442|\u043f\u0440\u043e\u0441\u043f|\u043f\u043b|\u0431\u0443\u043b|\u0431\-\u0440|\u043d\u0430\u0431|\u0448|\u0442\u0443\u043f|\u043e\u0444|\u043a\u043e\u043c\u043d?|\u0443\u0447|\u0432\u043b|\u0432\u043b\u0430\u0434|\u0441\u0442\u0440|\u043a\u043e\u0440)\. *([\u0430-\u044f\u0451a-z\d]+)/gi,"$1$2.\xa0$3")}}),e.rule({name:"ru/nbsp/afterNumberSign",sortIndex:610,func:function(e){return e.replace(/\u2116 ?(\d|\u043f\/\u043f)/g,"\u2116\xa0$1")}}),e.rule({name:"ru/nbsp/beforeParticle",sortIndex:570,func:function(e){return e.replace(/ (\u043b\u0438|\u043b\u044c|\u0436\u0435|\u0436|\u0431\u044b|\u0431)([^\u0430-\u044f\u0451\u0410-\u042f\u0401])/g,"\xa0$1$2")}}),e.rule({name:"ru/nbsp/but",sortIndex:1110,func:function(e){var n=new RegExp(",?( |\xa0|\n)(\u0430|\u043d\u043e)( |\xa0|\n)","g");return e.replace(n,",$1$2$3")}}),e.rule({name:"ru/nbsp/cc",sortIndex:1090,func:function(e){return e=e.replace(/(^|\d|V|I|X) ?\u0432(\u0432)?( |,|;|\n|$)/g,"$1\xa0\u0432$2.$3"),e.replace(/(^|\d|[IVX]) ?\u0432\.? ?\u0432\./g,"$1\xa0\u0432\u0432.")}}),e.rule({name:"ru/nbsp/dayMonth",sortIndex:1105,func:function(n){var r=new RegExp("(\\d{1,2}) ("+e.data("ru/shortMonth").join("|")+")","gi");return n.replace(r,"$1\xa0$2")}}),e.rule({name:"ru/nbsp/m",sortIndex:1030,func:function(e){var n="(\u043a\u043c|\u043c|\u0434\u043c|\u0441\u043c|\u043c\u043c)",r=new RegExp("(^|\\D)(\\d+) ?"+n+"2(\\D|$)","g"),t=new RegExp("(^|\\D)(\\d+) ?"+n+"3(\\D|$)","g");return e.replace(r,"$1$2\xa0$3\xb2$4").replace(t,"$1$2\xa0$3\xb3$4")}}),e.rule({name:"ru/nbsp/ooo",sortIndex:1100,func:function(e){return e.replace(/(^|[^a-\u044f\u0451A-\u042f\u0401])(\u041e\u041e\u041e|\u041e\u0410\u041e|\u0417\u0410\u041e|\u041d\u0418\u0418|\u041f\u0411\u041e\u042e\u041b) /g,"$1$2\xa0")}}),e.rule({name:"ru/nbsp/page",sortIndex:610,func:function(e){return e.replace(/ (\u0441\u0442\u0440|\u0433\u043b|\u0440\u0438\u0441|\u0438\u043b\u043b)\./g,"\xa0$1.")}}),e.rule({name:"ru/nbsp/xxxx",sortIndex:1060,func:function(e){return e.replace(/(^|\D)(\d{1,4}) ?\u0433(\u043e\u0434| |,|;|\.|\n|$)/g,"$1$2\xa0\u0433$3")}}),e.rule({name:"ru/nbsp/yy",sortIndex:1080,func:function(e){return e.replace(/(^|\d) ?\u0433\. ?\u0433\./g,"$1\xa0\u0433\u0433.")}}),e.rule({name:"ru/number/ordinals",sortIndex:1300,func:function(e){return e.replace(/(\d)-(\u044b\u0439|\u043e\u0439)([^\u0430-\u044f\u0451]|$)/g,"$1-\u0439$3").replace(/(\d)-\u0430\u044f([^\u0430-\u044f\u0451]|$)/g,"$1-\u044f$2").replace(/(\d)-(\u043e\u0435|\u044b\u0435)([^\u0430-\u044f\u0451]|$)/g,"$1-\u0435$3").replace(/(\d)-(\u044b\u043c|\u043e\u043c)([^\u0430-\u044f\u0451]|$)/g,"$1-\u043c$3").replace(/(\d)-\u044b\u0445([^\u0430-\u044f\u0451]|$)/g,"$1-\u0445$2").replace(/(\d)-\u043e\u0433\u043e([^\u0430-\u044f\u0451]|$)/g,"$1-\u0433\u043e$2").replace(/(\d)-\u043e\u043c\u0443([^\u0430-\u044f\u0451]|$)/g,"$1-\u043c\u0443$2").replace(/(\d)-\u044b\u043c\u0438([^\u0430-\u044f\u0451]|$)/g,"$1-\u043c\u0438$2")}}),e.rule({name:"ru/optalign/bracket",sortIndex:1001,func:function(e,n){return e.replace(/( |\u00A0)\(/g,'<span class="typograf-oa-sp-lbracket">$1</span><span class="typograf-oa-lbracket">(</span>').replace(/(^|\n)\(/g,'$1<span class="typograf-oa-n-lbracket">(</span>')},disabled:!0}).innerRule({name:"ru/optalign/bracket",func:function(e){return e.replace(/<span class="typograf-oa-(sp-lbracket|lbracket|n-lbracket)">(.*?)<\/span>/g,"$2")}}),e.rule({name:"ru/optalign/comma",sortIndex:1002,func:function(e,n){var r=new RegExp("(["+this.letters()+"\\d\u0301]+), ","gi");return e.replace(r,'$1<span class="typograf-oa-comma">,</span><span class="typograf-oa-comma-sp"> </span>')},disabled:!0}).innerRule({name:"ru/optalign/comma",func:function(e){return e.replace(/<span class="typograf-oa-(comma|comma-sp)">(.*?)<\/span>/g,"$2")}}),e.rule({name:"ru/optalign/quot",sortIndex:1e3,func:function(n){var r='(["'+this.setting("ru/punctuation/quot","lquot")+this.setting("ru/punctuation/quot","lquot2")+"])",t=new RegExp("([\\d"+this.letters()+"\\-\u0301!?.:;,]+)( |\xa0)("+r+")","gi"),a=new RegExp("(^|\n|"+e._privateLabel+")"+r,"g");return n.replace(t,'$1<span class="typograf-oa-sp-lquot">$2</span><span class="typograf-oa-lquot">$3</span>').replace(a,'$1<span class="typograf-oa-n-lquot">$2</span>')},disabled:!0}).innerRule({name:"ru/optalign/quot",func:function(e){return e.replace(/<span class="typograf-oa-(sp-lquot|lquot|n-lquot)">(.*?)<\/span>/g,"$2")}}),e.rule({name:"ru/other/accent",sortIndex:560,func:function(e){return e.replace(/([\u0430-\u044f\u0451])([\u0410\u0415\u0401\u0418\u041e\u0423\u042b\u042d\u042e\u042f])([^\u0410-\u042f\u0401\w]|$)/g,function(e,n,r,t){return n+r.toLowerCase()+"\u0301"+t})},disabled:!0}),e.rule({name:"ru/punctuation/quot",sortIndex:700,func:e._quot,settings:{lquot:"\xab",rquot:"\xbb",lquot2:"\u201e",rquot2:"\u201c",lquot3:"\u201a",rquot3:"\u2018"}}),e._sortRules(),e._needSortRules=!0,e});

@@ -1,2 +0,2 @@

Typograf.prototype.titles = {
Typograf.titles = {
"common/html/escape": {

@@ -167,2 +167,9 @@ "en": "Escaping HTML",

},
"ru/date/main": {
"en": "Converting dates YYYY-MM-DD type DD.MM.YYYY",
"ru": "Преобразование дат YYYY-MM-DD к виду DD.MM.YYYY"
},
"ru/date/weekday": {
"common": "2 Мая, Понедельник → 2 мая, понедельник"
},
"ru/money/dollar": {

@@ -177,2 +184,5 @@ "common": "$100 → 100 $"

},
"ru/number/ordinals": {
"common": "N-ый, -ой, -ая, -ое, -ые, -ым, -ом, -ых → N-й, -я, -е, -м, -х (25-й)"
},
"ru/nbsp/addr": {

@@ -222,16 +232,2 @@ "en": "Placement of non-breaking space after “г.”, “обл.”, “ул.”, “пр.”, “кв.” et al.",

},
"ru/date/main": {
"en": "Converting dates YYYY-MM-DD type DD.MM.YYYY",
"ru": "Преобразование дат YYYY-MM-DD к виду DD.MM.YYYY"
},
"ru/date/weekday": {
"common": "2 Мая, Понедельник → 2 мая, понедельник"
},
"ru/number/ordinals": {
"common": "N-ый, -ой, -ая, -ое, -ые, -ым, -ом, -ых → N-й, -я, -е, -м, -х (25-й)"
},
"ru/other/accent": {
"en": "Replacing capital letter and adding accents",
"ru": "Замена заглавной буквы и добавление знака ударения"
},
"ru/optalign/bracket": {

@@ -238,0 +234,0 @@ "en": "for opening bracket",

@@ -167,2 +167,9 @@ {

},
"ru/date/main": {
"en": "Converting dates YYYY-MM-DD type DD.MM.YYYY",
"ru": "Преобразование дат YYYY-MM-DD к виду DD.MM.YYYY"
},
"ru/date/weekday": {
"common": "2 Мая, Понедельник → 2 мая, понедельник"
},
"ru/money/dollar": {

@@ -177,2 +184,5 @@ "common": "$100 → 100 $"

},
"ru/number/ordinals": {
"common": "N-ый, -ой, -ая, -ое, -ые, -ым, -ом, -ых → N-й, -я, -е, -м, -х (25-й)"
},
"ru/nbsp/addr": {

@@ -222,16 +232,2 @@ "en": "Placement of non-breaking space after “г.”, “обл.”, “ул.”, “пр.”, “кв.” et al.",

},
"ru/date/main": {
"en": "Converting dates YYYY-MM-DD type DD.MM.YYYY",
"ru": "Преобразование дат YYYY-MM-DD к виду DD.MM.YYYY"
},
"ru/date/weekday": {
"common": "2 Мая, Понедельник → 2 мая, понедельник"
},
"ru/number/ordinals": {
"common": "N-ый, -ой, -ая, -ое, -ые, -ым, -ом, -ых → N-й, -я, -е, -м, -х (25-й)"
},
"ru/other/accent": {
"en": "Replacing capital letter and adding accents",
"ru": "Замена заглавной буквы и добавление знака ударения"
},
"ru/optalign/bracket": {

@@ -238,0 +234,0 @@ "en": "for opening bracket",

{
"name": "typograf",
"description": "The client and server typographer",
"version": "2.12.1",
"version": "2.13.0",
"author": {

@@ -46,8 +46,8 @@ "name": "Denis Seleznev",

"devDependencies": {
"chai": "~2.2.0",
"gulp": "~3.8.10",
"gulp-concat": "~2.5.0",
"chai": "~3.1.0",
"gulp": "~3.9.0",
"gulp-concat": "~2.6.0",
"gulp-filter": "~2.0.0",
"gulp-jscs": "~1.6.0",
"gulp-jshint": "~1.10.0",
"gulp-jshint": "~1.11.2",
"gulp-jsonlint": "^1.0.2",

@@ -58,10 +58,11 @@ "gulp-rename": "~1.2.0",

"istanbul": "~0.3.5",
"jscs": "~1.12.0",
"jshint": "~2.7.0",
"jscs": "~1.13.1",
"jshint": "~2.8.0",
"mocha": "~2.2.0",
"through": "~2.3.6",
"yaspeller": "~2.1.0"
"yaspeller": "~2.5.0"
},
"scripts": {
"test": "npm run-script jshint && npm run-script jscs && npm run-script unit-test-coverage",
"test": "npm run-script gulp && npm run-script jshint && npm run-script jscs && npm run-script unit-test-coverage",
"gulp": "./node_modules/.bin/gulp",
"yaspeller": "./node_modules/.bin/yaspeller .",

@@ -68,0 +69,0 @@ "jscs": "./node_modules/.bin/jscs .",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc