`):
+ *
+ * ```javascript
+ * var hljs = require('highlight.js') // https://highlightjs.org/
+ *
+ * // Actual default values
+ * var md = require('markdown-it')({
+ * highlight: function (str, lang) {
+ * if (lang && hljs.getLanguage(lang)) {
+ * try {
+ * return '' +
+ * hljs.highlight(lang, str, true).value +
+ * '
';
+ * } catch (__) {}
+ * }
+ *
+ * return '' + md.utils.escapeHtml(str) + '
';
+ * }
+ * });
+ * ```
+ *
+ **/
+ function MarkdownIt(presetName, options) {
+ if (!(this instanceof MarkdownIt)) {
+ return new MarkdownIt(presetName, options);
+ }
+
+ if (!options) {
+ if (!utils.isString(presetName)) {
+ options = presetName || {};
+ presetName = 'default';
+ }
+ }
+
+ /**
+ * MarkdownIt#inline -> ParserInline
+ *
+ * Instance of [[ParserInline]]. You may need it to add new rules when
+ * writing plugins. For simple rules control use [[MarkdownIt.disable]] and
+ * [[MarkdownIt.enable]].
+ **/
+ this.inline = new ParserInline();
+
+ /**
+ * MarkdownIt#block -> ParserBlock
+ *
+ * Instance of [[ParserBlock]]. You may need it to add new rules when
+ * writing plugins. For simple rules control use [[MarkdownIt.disable]] and
+ * [[MarkdownIt.enable]].
+ **/
+ this.block = new ParserBlock();
+
+ /**
+ * MarkdownIt#core -> Core
+ *
+ * Instance of [[Core]] chain executor. You may need it to add new rules when
+ * writing plugins. For simple rules control use [[MarkdownIt.disable]] and
+ * [[MarkdownIt.enable]].
+ **/
+ this.core = new ParserCore();
+
+ /**
+ * MarkdownIt#renderer -> Renderer
+ *
+ * Instance of [[Renderer]]. Use it to modify output look. Or to add rendering
+ * rules for new token types, generated by plugins.
+ *
+ * ##### Example
+ *
+ * ```javascript
+ * var md = require('markdown-it')();
+ *
+ * function myToken(tokens, idx, options, env, self) {
+ * //...
+ * return result;
+ * };
+ *
+ * md.renderer.rules['my_token'] = myToken
+ * ```
+ *
+ * See [[Renderer]] docs and [source code](https://github.com/markdown-it/markdown-it/blob/master/lib/renderer.js).
+ **/
+ this.renderer = new Renderer();
+
+ /**
+ * MarkdownIt#linkify -> LinkifyIt
+ *
+ * [linkify-it](https://github.com/markdown-it/linkify-it) instance.
+ * Used by [linkify](https://github.com/markdown-it/markdown-it/blob/master/lib/rules_core/linkify.js)
+ * rule.
+ **/
+ this.linkify = new LinkifyIt();
+
+ /**
+ * MarkdownIt#validateLink(url) -> Boolean
+ *
+ * Link validation function. CommonMark allows too much in links. By default
+ * we disable `javascript:`, `vbscript:`, `file:` schemas, and almost all `data:...` schemas
+ * except some embedded image types.
+ *
+ * You can change this behaviour:
+ *
+ * ```javascript
+ * var md = require('markdown-it')();
+ * // enable everything
+ * md.validateLink = function () { return true; }
+ * ```
+ **/
+ this.validateLink = validateLink;
+
+ /**
+ * MarkdownIt#normalizeLink(url) -> String
+ *
+ * Function used to encode link url to a machine-readable format,
+ * which includes url-encoding, punycode, etc.
+ **/
+ this.normalizeLink = normalizeLink;
+
+ /**
+ * MarkdownIt#normalizeLinkText(url) -> String
+ *
+ * Function used to decode link url to a human-readable format`
+ **/
+ this.normalizeLinkText = normalizeLinkText;
+
+
+ // Expose utils & helpers for easy acces from plugins
+
+ /**
+ * MarkdownIt#utils -> utils
+ *
+ * Assorted utility functions, useful to write plugins. See details
+ * [here](https://github.com/markdown-it/markdown-it/blob/master/lib/common/utils.js).
+ **/
+ this.utils = utils;
+
+ /**
+ * MarkdownIt#helpers -> helpers
+ *
+ * Link components parser functions, useful to write plugins. See details
+ * [here](https://github.com/markdown-it/markdown-it/blob/master/lib/helpers).
+ **/
+ this.helpers = utils.assign({}, helpers);
+
+
+ this.options = {};
+ this.configure(presetName);
+
+ if (options) { this.set(options); }
+ }
+
+
+ /** chainable
+ * MarkdownIt.set(options)
+ *
+ * Set parser options (in the same format as in constructor). Probably, you
+ * will never need it, but you can change options after constructor call.
+ *
+ * ##### Example
+ *
+ * ```javascript
+ * var md = require('markdown-it')()
+ * .set({ html: true, breaks: true })
+ * .set({ typographer, true });
+ * ```
+ *
+ * __Note:__ To achieve the best possible performance, don't modify a
+ * `markdown-it` instance options on the fly. If you need multiple configurations
+ * it's best to create multiple instances and initialize each with separate
+ * config.
+ **/
+ MarkdownIt.prototype.set = function (options) {
+ utils.assign(this.options, options);
+ return this;
+ };
+
+
+ /** chainable, internal
+ * MarkdownIt.configure(presets)
+ *
+ * Batch load of all options and compenent settings. This is internal method,
+ * and you probably will not need it. But if you with - see available presets
+ * and data structure [here](https://github.com/markdown-it/markdown-it/tree/master/lib/presets)
+ *
+ * We strongly recommend to use presets instead of direct config loads. That
+ * will give better compatibility with next versions.
+ **/
+ MarkdownIt.prototype.configure = function (presets) {
+ var self = this, presetName;
+
+ if (utils.isString(presets)) {
+ presetName = presets;
+ presets = config[presetName];
+ if (!presets) { throw new Error('Wrong `markdown-it` preset "' + presetName + '", check name'); }
+ }
+
+ if (!presets) { throw new Error('Wrong `markdown-it` preset, can\'t be empty'); }
+
+ if (presets.options) { self.set(presets.options); }
+
+ if (presets.components) {
+ Object.keys(presets.components).forEach(function (name) {
+ if (presets.components[name].rules) {
+ self[name].ruler.enableOnly(presets.components[name].rules);
+ }
+ if (presets.components[name].rules2) {
+ self[name].ruler2.enableOnly(presets.components[name].rules2);
+ }
+ });
+ }
+ return this;
+ };
+
+
+ /** chainable
+ * MarkdownIt.enable(list, ignoreInvalid)
+ * - list (String|Array): rule name or list of rule names to enable
+ * - ignoreInvalid (Boolean): set `true` to ignore errors when rule not found.
+ *
+ * Enable list or rules. It will automatically find appropriate components,
+ * containing rules with given names. If rule not found, and `ignoreInvalid`
+ * not set - throws exception.
+ *
+ * ##### Example
+ *
+ * ```javascript
+ * var md = require('markdown-it')()
+ * .enable(['sub', 'sup'])
+ * .disable('smartquotes');
+ * ```
+ **/
+ MarkdownIt.prototype.enable = function (list, ignoreInvalid) {
+ var result = [];
+
+ if (!Array.isArray(list)) { list = [ list ]; }
+
+ [ 'core', 'block', 'inline' ].forEach(function (chain) {
+ result = result.concat(this[chain].ruler.enable(list, true));
+ }, this);
+
+ result = result.concat(this.inline.ruler2.enable(list, true));
+
+ var missed = list.filter(function (name) { return result.indexOf(name) < 0; });
+
+ if (missed.length && !ignoreInvalid) {
+ throw new Error('MarkdownIt. Failed to enable unknown rule(s): ' + missed);
+ }
+
+ return this;
+ };
+
+
+ /** chainable
+ * MarkdownIt.disable(list, ignoreInvalid)
+ * - list (String|Array): rule name or list of rule names to disable.
+ * - ignoreInvalid (Boolean): set `true` to ignore errors when rule not found.
+ *
+ * The same as [[MarkdownIt.enable]], but turn specified rules off.
+ **/
+ MarkdownIt.prototype.disable = function (list, ignoreInvalid) {
+ var result = [];
+
+ if (!Array.isArray(list)) { list = [ list ]; }
+
+ [ 'core', 'block', 'inline' ].forEach(function (chain) {
+ result = result.concat(this[chain].ruler.disable(list, true));
+ }, this);
+
+ result = result.concat(this.inline.ruler2.disable(list, true));
+
+ var missed = list.filter(function (name) { return result.indexOf(name) < 0; });
+
+ if (missed.length && !ignoreInvalid) {
+ throw new Error('MarkdownIt. Failed to disable unknown rule(s): ' + missed);
+ }
+ return this;
+ };
+
+
+ /** chainable
+ * MarkdownIt.use(plugin, params)
+ *
+ * Load specified plugin with given params into current parser instance.
+ * It's just a sugar to call `plugin(md, params)` with curring.
+ *
+ * ##### Example
+ *
+ * ```javascript
+ * var iterator = require('markdown-it-for-inline');
+ * var md = require('markdown-it')()
+ * .use(iterator, 'foo_replace', 'text', function (tokens, idx) {
+ * tokens[idx].content = tokens[idx].content.replace(/foo/g, 'bar');
+ * });
+ * ```
+ **/
+ MarkdownIt.prototype.use = function (plugin /*, params, ... */) {
+ var args = [ this ].concat(Array.prototype.slice.call(arguments, 1));
+ plugin.apply(plugin, args);
+ return this;
+ };
+
+
+ /** internal
+ * MarkdownIt.parse(src, env) -> Array
+ * - src (String): source string
+ * - env (Object): environment sandbox
+ *
+ * Parse input string and returns list of block tokens (special token type
+ * "inline" will contain list of inline tokens). You should not call this
+ * method directly, until you write custom renderer (for example, to produce
+ * AST).
+ *
+ * `env` is used to pass data between "distributed" rules and return additional
+ * metadata like reference info, needed for the renderer. It also can be used to
+ * inject data in specific cases. Usually, you will be ok to pass `{}`,
+ * and then pass updated object to renderer.
+ **/
+ MarkdownIt.prototype.parse = function (src, env) {
+ if (typeof src !== 'string') {
+ throw new Error('Input data should be a String');
+ }
+
+ var state = new this.core.State(src, this, env);
+
+ this.core.process(state);
+
+ return state.tokens;
+ };
+
+
+ /**
+ * MarkdownIt.render(src [, env]) -> String
+ * - src (String): source string
+ * - env (Object): environment sandbox
+ *
+ * Render markdown string into html. It does all magic for you :).
+ *
+ * `env` can be used to inject additional metadata (`{}` by default).
+ * But you will not need it with high probability. See also comment
+ * in [[MarkdownIt.parse]].
+ **/
+ MarkdownIt.prototype.render = function (src, env) {
+ env = env || {};
+
+ return this.renderer.render(this.parse(src, env), this.options, env);
+ };
+
+
+ /** internal
+ * MarkdownIt.parseInline(src, env) -> Array
+ * - src (String): source string
+ * - env (Object): environment sandbox
+ *
+ * The same as [[MarkdownIt.parse]] but skip all block rules. It returns the
+ * block tokens list with the single `inline` element, containing parsed inline
+ * tokens in `children` property. Also updates `env` object.
+ **/
+ MarkdownIt.prototype.parseInline = function (src, env) {
+ var state = new this.core.State(src, this, env);
+
+ state.inlineMode = true;
+ this.core.process(state);
+
+ return state.tokens;
+ };
+
+
+ /**
+ * MarkdownIt.renderInline(src [, env]) -> String
+ * - src (String): source string
+ * - env (Object): environment sandbox
+ *
+ * Similar to [[MarkdownIt.render]] but for single paragraph content. Result
+ * will NOT be wrapped into `` tags.
+ **/
+ MarkdownIt.prototype.renderInline = function (src, env) {
+ env = env || {};
+
+ return this.renderer.render(this.parseInline(src, env), this.options, env);
+ };
+
+
+ module.exports = MarkdownIt;
+
+ },{"./common/utils":4,"./helpers":5,"./parser_block":10,"./parser_core":11,"./parser_inline":12,"./presets/commonmark":13,"./presets/default":14,"./presets/zero":15,"./renderer":16,"linkify-it":53,"mdurl":58,"punycode":60}],10:[function(require,module,exports){
+ /** internal
+ * class ParserBlock
+ *
+ * Block-level tokenizer.
+ **/
+ 'use strict';
+
+
+ var Ruler = require('./ruler');
+
+
+ var _rules = [
+ // First 2 params - rule name & source. Secondary array - list of rules,
+ // which can be terminated by this one.
+ [ 'table', require('./rules_block/table'), [ 'paragraph', 'reference' ] ],
+ [ 'code', require('./rules_block/code') ],
+ [ 'fence', require('./rules_block/fence'), [ 'paragraph', 'reference', 'blockquote', 'list' ] ],
+ [ 'blockquote', require('./rules_block/blockquote'), [ 'paragraph', 'reference', 'blockquote', 'list' ] ],
+ [ 'hr', require('./rules_block/hr'), [ 'paragraph', 'reference', 'blockquote', 'list' ] ],
+ [ 'list', require('./rules_block/list'), [ 'paragraph', 'reference', 'blockquote' ] ],
+ [ 'reference', require('./rules_block/reference') ],
+ [ 'heading', require('./rules_block/heading'), [ 'paragraph', 'reference', 'blockquote' ] ],
+ [ 'lheading', require('./rules_block/lheading') ],
+ [ 'html_block', require('./rules_block/html_block'), [ 'paragraph', 'reference', 'blockquote' ] ],
+ [ 'paragraph', require('./rules_block/paragraph') ]
+ ];
+
+
+ /**
+ * new ParserBlock()
+ **/
+ function ParserBlock() {
+ /**
+ * ParserBlock#ruler -> Ruler
+ *
+ * [[Ruler]] instance. Keep configuration of block rules.
+ **/
+ this.ruler = new Ruler();
+
+ for (var i = 0; i < _rules.length; i++) {
+ this.ruler.push(_rules[i][0], _rules[i][1], { alt: (_rules[i][2] || []).slice() });
+ }
+ }
+
+
+ // Generate tokens for input range
+ //
+ ParserBlock.prototype.tokenize = function (state, startLine, endLine) {
+ var ok, i,
+ rules = this.ruler.getRules(''),
+ len = rules.length,
+ line = startLine,
+ hasEmptyLines = false,
+ maxNesting = state.md.options.maxNesting;
+
+ while (line < endLine) {
+ state.line = line = state.skipEmptyLines(line);
+ if (line >= endLine) { break; }
+
+ // Termination condition for nested calls.
+ // Nested calls currently used for blockquotes & lists
+ if (state.sCount[line] < state.blkIndent) { break; }
+
+ // If nesting level exceeded - skip tail to the end. That's not ordinary
+ // situation and we should not care about content.
+ if (state.level >= maxNesting) {
+ state.line = endLine;
+ break;
+ }
+
+ // Try all possible rules.
+ // On success, rule should:
+ //
+ // - update `state.line`
+ // - update `state.tokens`
+ // - return true
+
+ for (i = 0; i < len; i++) {
+ ok = rules[i](state, line, endLine, false);
+ if (ok) { break; }
+ }
+
+ // set state.tight if we had an empty line before current tag
+ // i.e. latest empty line should not count
+ state.tight = !hasEmptyLines;
+
+ // paragraph might "eat" one newline after it in nested lists
+ if (state.isEmpty(state.line - 1)) {
+ hasEmptyLines = true;
+ }
+
+ line = state.line;
+
+ if (line < endLine && state.isEmpty(line)) {
+ hasEmptyLines = true;
+ line++;
+ state.line = line;
+ }
+ }
+ };
+
+
+ /**
+ * ParserBlock.parse(str, md, env, outTokens)
+ *
+ * Process input string and push block tokens into `outTokens`
+ **/
+ ParserBlock.prototype.parse = function (src, md, env, outTokens) {
+ var state;
+
+ if (!src) { return; }
+
+ state = new this.State(src, md, env, outTokens);
+
+ this.tokenize(state, state.line, state.lineMax);
+ };
+
+
+ ParserBlock.prototype.State = require('./rules_block/state_block');
+
+
+ module.exports = ParserBlock;
+
+ },{"./ruler":17,"./rules_block/blockquote":18,"./rules_block/code":19,"./rules_block/fence":20,"./rules_block/heading":21,"./rules_block/hr":22,"./rules_block/html_block":23,"./rules_block/lheading":24,"./rules_block/list":25,"./rules_block/paragraph":26,"./rules_block/reference":27,"./rules_block/state_block":28,"./rules_block/table":29}],11:[function(require,module,exports){
+ /** internal
+ * class Core
+ *
+ * Top-level rules executor. Glues block/inline parsers and does intermediate
+ * transformations.
+ **/
+ 'use strict';
+
+
+ var Ruler = require('./ruler');
+
+
+ var _rules = [
+ [ 'normalize', require('./rules_core/normalize') ],
+ [ 'block', require('./rules_core/block') ],
+ [ 'inline', require('./rules_core/inline') ],
+ [ 'linkify', require('./rules_core/linkify') ],
+ [ 'replacements', require('./rules_core/replacements') ],
+ [ 'smartquotes', require('./rules_core/smartquotes') ]
+ ];
+
+
+ /**
+ * new Core()
+ **/
+ function Core() {
+ /**
+ * Core#ruler -> Ruler
+ *
+ * [[Ruler]] instance. Keep configuration of core rules.
+ **/
+ this.ruler = new Ruler();
+
+ for (var i = 0; i < _rules.length; i++) {
+ this.ruler.push(_rules[i][0], _rules[i][1]);
+ }
+ }
+
+
+ /**
+ * Core.process(state)
+ *
+ * Executes core chain rules.
+ **/
+ Core.prototype.process = function (state) {
+ var i, l, rules;
+
+ rules = this.ruler.getRules('');
+
+ for (i = 0, l = rules.length; i < l; i++) {
+ rules[i](state);
+ }
+ };
+
+ Core.prototype.State = require('./rules_core/state_core');
+
+
+ module.exports = Core;
+
+ },{"./ruler":17,"./rules_core/block":30,"./rules_core/inline":31,"./rules_core/linkify":32,"./rules_core/normalize":33,"./rules_core/replacements":34,"./rules_core/smartquotes":35,"./rules_core/state_core":36}],12:[function(require,module,exports){
+ /** internal
+ * class ParserInline
+ *
+ * Tokenizes paragraph content.
+ **/
+ 'use strict';
+
+
+ var Ruler = require('./ruler');
+
+
+ ////////////////////////////////////////////////////////////////////////////////
+ // Parser rules
+
+ var _rules = [
+ [ 'text', require('./rules_inline/text') ],
+ [ 'newline', require('./rules_inline/newline') ],
+ [ 'escape', require('./rules_inline/escape') ],
+ [ 'backticks', require('./rules_inline/backticks') ],
+ [ 'strikethrough', require('./rules_inline/strikethrough').tokenize ],
+ [ 'emphasis', require('./rules_inline/emphasis').tokenize ],
+ [ 'link', require('./rules_inline/link') ],
+ [ 'image', require('./rules_inline/image') ],
+ [ 'autolink', require('./rules_inline/autolink') ],
+ [ 'html_inline', require('./rules_inline/html_inline') ],
+ [ 'entity', require('./rules_inline/entity') ]
+ ];
+
+ var _rules2 = [
+ [ 'balance_pairs', require('./rules_inline/balance_pairs') ],
+ [ 'strikethrough', require('./rules_inline/strikethrough').postProcess ],
+ [ 'emphasis', require('./rules_inline/emphasis').postProcess ],
+ [ 'text_collapse', require('./rules_inline/text_collapse') ]
+ ];
+
+
+ /**
+ * new ParserInline()
+ **/
+ function ParserInline() {
+ var i;
+
+ /**
+ * ParserInline#ruler -> Ruler
+ *
+ * [[Ruler]] instance. Keep configuration of inline rules.
+ **/
+ this.ruler = new Ruler();
+
+ for (i = 0; i < _rules.length; i++) {
+ this.ruler.push(_rules[i][0], _rules[i][1]);
+ }
+
+ /**
+ * ParserInline#ruler2 -> Ruler
+ *
+ * [[Ruler]] instance. Second ruler used for post-processing
+ * (e.g. in emphasis-like rules).
+ **/
+ this.ruler2 = new Ruler();
+
+ for (i = 0; i < _rules2.length; i++) {
+ this.ruler2.push(_rules2[i][0], _rules2[i][1]);
+ }
+ }
+
+
+ // Skip single token by running all rules in validation mode;
+ // returns `true` if any rule reported success
+ //
+ ParserInline.prototype.skipToken = function (state) {
+ var ok, i, pos = state.pos,
+ rules = this.ruler.getRules(''),
+ len = rules.length,
+ maxNesting = state.md.options.maxNesting,
+ cache = state.cache;
+
+
+ if (typeof cache[pos] !== 'undefined') {
+ state.pos = cache[pos];
+ return;
+ }
+
+ if (state.level < maxNesting) {
+ for (i = 0; i < len; i++) {
+ // Increment state.level and decrement it later to limit recursion.
+ // It's harmless to do here, because no tokens are created. But ideally,
+ // we'd need a separate private state variable for this purpose.
+ //
+ state.level++;
+ ok = rules[i](state, true);
+ state.level--;
+
+ if (ok) { break; }
+ }
+ } else {
+ // Too much nesting, just skip until the end of the paragraph.
+ //
+ // NOTE: this will cause links to behave incorrectly in the following case,
+ // when an amount of `[` is exactly equal to `maxNesting + 1`:
+ //
+ // [[[[[[[[[[[[[[[[[[[[[foo]()
+ //
+ // TODO: remove this workaround when CM standard will allow nested links
+ // (we can replace it by preventing links from being parsed in
+ // validation mode)
+ //
+ state.pos = state.posMax;
+ }
+
+ if (!ok) { state.pos++; }
+ cache[pos] = state.pos;
+ };
+
+
+ // Generate tokens for input range
+ //
+ ParserInline.prototype.tokenize = function (state) {
+ var ok, i,
+ rules = this.ruler.getRules(''),
+ len = rules.length,
+ end = state.posMax,
+ maxNesting = state.md.options.maxNesting;
+
+ while (state.pos < end) {
+ // Try all possible rules.
+ // On success, rule should:
+ //
+ // - update `state.pos`
+ // - update `state.tokens`
+ // - return true
+
+ if (state.level < maxNesting) {
+ for (i = 0; i < len; i++) {
+ ok = rules[i](state, false);
+ if (ok) { break; }
+ }
+ }
+
+ if (ok) {
+ if (state.pos >= end) { break; }
+ continue;
+ }
+
+ state.pending += state.src[state.pos++];
+ }
+
+ if (state.pending) {
+ state.pushPending();
+ }
+ };
+
+
+ /**
+ * ParserInline.parse(str, md, env, outTokens)
+ *
+ * Process input string and push inline tokens into `outTokens`
+ **/
+ ParserInline.prototype.parse = function (str, md, env, outTokens) {
+ var i, rules, len;
+ var state = new this.State(str, md, env, outTokens);
+
+ this.tokenize(state);
+
+ rules = this.ruler2.getRules('');
+ len = rules.length;
+
+ for (i = 0; i < len; i++) {
+ rules[i](state);
+ }
+ };
+
+
+ ParserInline.prototype.State = require('./rules_inline/state_inline');
+
+
+ module.exports = ParserInline;
+
+ },{"./ruler":17,"./rules_inline/autolink":37,"./rules_inline/backticks":38,"./rules_inline/balance_pairs":39,"./rules_inline/emphasis":40,"./rules_inline/entity":41,"./rules_inline/escape":42,"./rules_inline/html_inline":43,"./rules_inline/image":44,"./rules_inline/link":45,"./rules_inline/newline":46,"./rules_inline/state_inline":47,"./rules_inline/strikethrough":48,"./rules_inline/text":49,"./rules_inline/text_collapse":50}],13:[function(require,module,exports){
+ // Commonmark default options
+
+ 'use strict';
+
+
+ module.exports = {
+ options: {
+ html: true, // Enable HTML tags in source
+ xhtmlOut: true, // Use '/' to close single tags (
)
+ breaks: false, // Convert '\n' in paragraphs into
+ langPrefix: 'language-', // CSS language prefix for fenced blocks
+ linkify: false, // autoconvert URL-like texts to links
+
+ // Enable some language-neutral replacements + quotes beautification
+ typographer: false,
+
+ // Double + single quotes replacement pairs, when typographer enabled,
+ // and smartquotes on. Could be either a String or an Array.
+ //
+ // For example, you can use '«»„“' for Russian, '„“‚‘' for German,
+ // and ['«\xA0', '\xA0»', '‹\xA0', '\xA0›'] for French (including nbsp).
+ quotes: '\u201c\u201d\u2018\u2019', /* “”‘’ */
+
+ // Highlighter function. Should return escaped HTML,
+ // or '' if the source string is not changed and should be escaped externaly.
+ // If result starts with
)
+ breaks: false, // Convert '\n' in paragraphs into
+ langPrefix: 'language-', // CSS language prefix for fenced blocks
+ linkify: false, // autoconvert URL-like texts to links
+
+ // Enable some language-neutral replacements + quotes beautification
+ typographer: false,
+
+ // Double + single quotes replacement pairs, when typographer enabled,
+ // and smartquotes on. Could be either a String or an Array.
+ //
+ // For example, you can use '«»„“' for Russian, '„“‚‘' for German,
+ // and ['«\xA0', '\xA0»', '‹\xA0', '\xA0›'] for French (including nbsp).
+ quotes: '\u201c\u201d\u2018\u2019', /* “”‘’ */
+
+ // Highlighter function. Should return escaped HTML,
+ // or '' if the source string is not changed and should be escaped externaly.
+ // If result starts with )
+ breaks: false, // Convert '\n' in paragraphs into
+ langPrefix: 'language-', // CSS language prefix for fenced blocks
+ linkify: false, // autoconvert URL-like texts to links
+
+ // Enable some language-neutral replacements + quotes beautification
+ typographer: false,
+
+ // Double + single quotes replacement pairs, when typographer enabled,
+ // and smartquotes on. Could be either a String or an Array.
+ //
+ // For example, you can use '«»„“' for Russian, '„“‚‘' for German,
+ // and ['«\xA0', '\xA0»', '‹\xA0', '\xA0›'] for French (including nbsp).
+ quotes: '\u201c\u201d\u2018\u2019', /* “”‘’ */
+
+ // Highlighter function. Should return escaped HTML,
+ // or '' if the source string is not changed and should be escaped externaly.
+ // If result starts with ' +
+ escapeHtml(tokens[idx].content) +
+ '';
+ };
+
+
+ default_rules.code_block = function (tokens, idx, options, env, slf) {
+ var token = tokens[idx];
+
+ return '' +
+ escapeHtml(tokens[idx].content) +
+ '
\n';
+ };
+
+
+ default_rules.fence = function (tokens, idx, options, env, slf) {
+ var token = tokens[idx],
+ info = token.info ? unescapeAll(token.info).trim() : '',
+ langName = '',
+ highlighted, i, tmpAttrs, tmpToken;
+
+ if (info) {
+ langName = info.split(/\s+/g)[0];
+ }
+
+ if (options.highlight) {
+ highlighted = options.highlight(token.content, langName) || escapeHtml(token.content);
+ } else {
+ highlighted = escapeHtml(token.content);
+ }
+
+ if (highlighted.indexOf(''
+ + highlighted
+ + '
\n';
+ }
+
+
+ return ''
+ + highlighted
+ + '
\n';
+ };
+
+
+ default_rules.image = function (tokens, idx, options, env, slf) {
+ var token = tokens[idx];
+
+ // "alt" attr MUST be set, even if empty. Because it's mandatory and
+ // should be placed on proper position for tests.
+ //
+ // Replace content with actual value
+
+ token.attrs[token.attrIndex('alt')][1] =
+ slf.renderInlineAsText(token.children, options, env);
+
+ return slf.renderToken(tokens, idx, options);
+ };
+
+
+ default_rules.hardbreak = function (tokens, idx, options /*, env */) {
+ return options.xhtmlOut ? '
\n' : '
\n';
+ };
+ default_rules.softbreak = function (tokens, idx, options /*, env */) {
+ return options.breaks ? (options.xhtmlOut ? '
\n' : '
\n') : '\n';
+ };
+
+
+ default_rules.text = function (tokens, idx /*, options, env */) {
+ return escapeHtml(tokens[idx].content);
+ };
+
+
+ default_rules.html_block = function (tokens, idx /*, options, env */) {
+ return tokens[idx].content;
+ };
+ default_rules.html_inline = function (tokens, idx /*, options, env */) {
+ return tokens[idx].content;
+ };
+
+
+ /**
+ * new Renderer()
+ *
+ * Creates new [[Renderer]] instance and fill [[Renderer#rules]] with defaults.
+ **/
+ function Renderer() {
+
+ /**
+ * Renderer#rules -> Object
+ *
+ * Contains render rules for tokens. Can be updated and extended.
+ *
+ * ##### Example
+ *
+ * ```javascript
+ * var md = require('markdown-it')();
+ *
+ * md.renderer.rules.strong_open = function () { return ''; };
+ * md.renderer.rules.strong_close = function () { return ''; };
+ *
+ * var result = md.renderInline(...);
+ * ```
+ *
+ * Each rule is called as independent static function with fixed signature:
+ *
+ * ```javascript
+ * function my_token_render(tokens, idx, options, env, renderer) {
+ * // ...
+ * return renderedHTML;
+ * }
+ * ```
+ *
+ * See [source code](https://github.com/markdown-it/markdown-it/blob/master/lib/renderer.js)
+ * for more details and examples.
+ **/
+ this.rules = assign({}, default_rules);
+ }
+
+
+ /**
+ * Renderer.renderAttrs(token) -> String
+ *
+ * Render token attributes to string.
+ **/
+ Renderer.prototype.renderAttrs = function renderAttrs(token) {
+ var i, l, result;
+
+ if (!token.attrs) { return ''; }
+
+ result = '';
+
+ for (i = 0, l = token.attrs.length; i < l; i++) {
+ result += ' ' + escapeHtml(token.attrs[i][0]) + '="' + escapeHtml(token.attrs[i][1]) + '"';
+ }
+
+ return result;
+ };
+
+
+ /**
+ * Renderer.renderToken(tokens, idx, options) -> String
+ * - tokens (Array): list of tokens
+ * - idx (Numbed): token index to render
+ * - options (Object): params of parser instance
+ *
+ * Default token renderer. Can be overriden by custom function
+ * in [[Renderer#rules]].
+ **/
+ Renderer.prototype.renderToken = function renderToken(tokens, idx, options) {
+ var nextToken,
+ result = '',
+ needLf = false,
+ token = tokens[idx];
+
+ // Tight list paragraphs
+ if (token.hidden) {
+ return '';
+ }
+
+ // Insert a newline between hidden paragraph and subsequent opening
+ // block-level tag.
+ //
+ // For example, here we should insert a newline before blockquote:
+ // - a
+ // >
+ //
+ if (token.block && token.nesting !== -1 && idx && tokens[idx - 1].hidden) {
+ result += '\n';
+ }
+
+ // Add token name, e.g. `
`.
+ //
+ needLf = false;
+ }
+ }
+ }
+ }
+
+ result += needLf ? '>\n' : '>';
+
+ return result;
+ };
+
+
+ /**
+ * Renderer.renderInline(tokens, options, env) -> String
+ * - tokens (Array): list on block tokens to renter
+ * - options (Object): params of parser instance
+ * - env (Object): additional data from parsed input (references, for example)
+ *
+ * The same as [[Renderer.render]], but for single token of `inline` type.
+ **/
+ Renderer.prototype.renderInline = function (tokens, options, env) {
+ var type,
+ result = '',
+ rules = this.rules;
+
+ for (var i = 0, len = tokens.length; i < len; i++) {
+ type = tokens[i].type;
+
+ if (typeof rules[type] !== 'undefined') {
+ result += rules[type](tokens, i, options, env, this);
+ } else {
+ result += this.renderToken(tokens, i, options);
+ }
+ }
+
+ return result;
+ };
+
+
+ /** internal
+ * Renderer.renderInlineAsText(tokens, options, env) -> String
+ * - tokens (Array): list on block tokens to renter
+ * - options (Object): params of parser instance
+ * - env (Object): additional data from parsed input (references, for example)
+ *
+ * Special kludge for image `alt` attributes to conform CommonMark spec.
+ * Don't try to use it! Spec requires to show `alt` content with stripped markup,
+ * instead of simple escaping.
+ **/
+ Renderer.prototype.renderInlineAsText = function (tokens, options, env) {
+ var result = '';
+
+ for (var i = 0, len = tokens.length; i < len; i++) {
+ if (tokens[i].type === 'text') {
+ result += tokens[i].content;
+ } else if (tokens[i].type === 'image') {
+ result += this.renderInlineAsText(tokens[i].children, options, env);
+ }
+ }
+
+ return result;
+ };
+
+
+ /**
+ * Renderer.render(tokens, options, env) -> String
+ * - tokens (Array): list on block tokens to renter
+ * - options (Object): params of parser instance
+ * - env (Object): additional data from parsed input (references, for example)
+ *
+ * Takes token stream and generates HTML. Probably, you will never need to call
+ * this method directly.
+ **/
+ Renderer.prototype.render = function (tokens, options, env) {
+ var i, len, type,
+ result = '',
+ rules = this.rules;
+
+ for (i = 0, len = tokens.length; i < len; i++) {
+ type = tokens[i].type;
+
+ if (type === 'inline') {
+ result += this.renderInline(tokens[i].children, options, env);
+ } else if (typeof rules[type] !== 'undefined') {
+ result += rules[tokens[i].type](tokens, i, options, env, this);
+ } else {
+ result += this.renderToken(tokens, i, options, env);
+ }
+ }
+
+ return result;
+ };
+
+ module.exports = Renderer;
+
+ },{"./common/utils":4}],17:[function(require,module,exports){
+ /**
+ * class Ruler
+ *
+ * Helper class, used by [[MarkdownIt#core]], [[MarkdownIt#block]] and
+ * [[MarkdownIt#inline]] to manage sequences of functions (rules):
+ *
+ * - keep rules in defined order
+ * - assign the name to each rule
+ * - enable/disable rules
+ * - add/replace rules
+ * - allow assign rules to additional named chains (in the same)
+ * - cacheing lists of active rules
+ *
+ * You will not need use this class directly until write plugins. For simple
+ * rules control use [[MarkdownIt.disable]], [[MarkdownIt.enable]] and
+ * [[MarkdownIt.use]].
+ **/
+ 'use strict';
+
+
+ /**
+ * new Ruler()
+ **/
+ function Ruler() {
+ // List of added rules. Each element is:
+ //
+ // {
+ // name: XXX,
+ // enabled: Boolean,
+ // fn: Function(),
+ // alt: [ name2, name3 ]
+ // }
+ //
+ this.__rules__ = [];
+
+ // Cached rule chains.
+ //
+ // First level - chain name, '' for default.
+ // Second level - diginal anchor for fast filtering by charcodes.
+ //
+ this.__cache__ = null;
+ }
+
+ ////////////////////////////////////////////////////////////////////////////////
+ // Helper methods, should not be used directly
+
+
+ // Find rule index by name
+ //
+ Ruler.prototype.__find__ = function (name) {
+ for (var i = 0; i < this.__rules__.length; i++) {
+ if (this.__rules__[i].name === name) {
+ return i;
+ }
+ }
+ return -1;
+ };
+
+
+ // Build rules lookup cache
+ //
+ Ruler.prototype.__compile__ = function () {
+ var self = this;
+ var chains = [ '' ];
+
+ // collect unique names
+ self.__rules__.forEach(function (rule) {
+ if (!rule.enabled) { return; }
+
+ rule.alt.forEach(function (altName) {
+ if (chains.indexOf(altName) < 0) {
+ chains.push(altName);
+ }
+ });
+ });
+
+ self.__cache__ = {};
+
+ chains.forEach(function (chain) {
+ self.__cache__[chain] = [];
+ self.__rules__.forEach(function (rule) {
+ if (!rule.enabled) { return; }
+
+ if (chain && rule.alt.indexOf(chain) < 0) { return; }
+
+ self.__cache__[chain].push(rule.fn);
+ });
+ });
+ };
+
+
+ /**
+ * Ruler.at(name, fn [, options])
+ * - name (String): rule name to replace.
+ * - fn (Function): new rule function.
+ * - options (Object): new rule options (not mandatory).
+ *
+ * Replace rule by name with new function & options. Throws error if name not
+ * found.
+ *
+ * ##### Options:
+ *
+ * - __alt__ - array with names of "alternate" chains.
+ *
+ * ##### Example
+ *
+ * Replace existing typographer replacement rule with new one:
+ *
+ * ```javascript
+ * var md = require('markdown-it')();
+ *
+ * md.core.ruler.at('replacements', function replace(state) {
+ * //...
+ * });
+ * ```
+ **/
+ Ruler.prototype.at = function (name, fn, options) {
+ var index = this.__find__(name);
+ var opt = options || {};
+
+ if (index === -1) { throw new Error('Parser rule not found: ' + name); }
+
+ this.__rules__[index].fn = fn;
+ this.__rules__[index].alt = opt.alt || [];
+ this.__cache__ = null;
+ };
+
+
+ /**
+ * Ruler.before(beforeName, ruleName, fn [, options])
+ * - beforeName (String): new rule will be added before this one.
+ * - ruleName (String): name of added rule.
+ * - fn (Function): rule function.
+ * - options (Object): rule options (not mandatory).
+ *
+ * Add new rule to chain before one with given name. See also
+ * [[Ruler.after]], [[Ruler.push]].
+ *
+ * ##### Options:
+ *
+ * - __alt__ - array with names of "alternate" chains.
+ *
+ * ##### Example
+ *
+ * ```javascript
+ * var md = require('markdown-it')();
+ *
+ * md.block.ruler.before('paragraph', 'my_rule', function replace(state) {
+ * //...
+ * });
+ * ```
+ **/
+ Ruler.prototype.before = function (beforeName, ruleName, fn, options) {
+ var index = this.__find__(beforeName);
+ var opt = options || {};
+
+ if (index === -1) { throw new Error('Parser rule not found: ' + beforeName); }
+
+ this.__rules__.splice(index, 0, {
+ name: ruleName,
+ enabled: true,
+ fn: fn,
+ alt: opt.alt || []
+ });
+
+ this.__cache__ = null;
+ };
+
+
+ /**
+ * Ruler.after(afterName, ruleName, fn [, options])
+ * - afterName (String): new rule will be added after this one.
+ * - ruleName (String): name of added rule.
+ * - fn (Function): rule function.
+ * - options (Object): rule options (not mandatory).
+ *
+ * Add new rule to chain after one with given name. See also
+ * [[Ruler.before]], [[Ruler.push]].
+ *
+ * ##### Options:
+ *
+ * - __alt__ - array with names of "alternate" chains.
+ *
+ * ##### Example
+ *
+ * ```javascript
+ * var md = require('markdown-it')();
+ *
+ * md.inline.ruler.after('text', 'my_rule', function replace(state) {
+ * //...
+ * });
+ * ```
+ **/
+ Ruler.prototype.after = function (afterName, ruleName, fn, options) {
+ var index = this.__find__(afterName);
+ var opt = options || {};
+
+ if (index === -1) { throw new Error('Parser rule not found: ' + afterName); }
+
+ this.__rules__.splice(index + 1, 0, {
+ name: ruleName,
+ enabled: true,
+ fn: fn,
+ alt: opt.alt || []
+ });
+
+ this.__cache__ = null;
+ };
+
+ /**
+ * Ruler.push(ruleName, fn [, options])
+ * - ruleName (String): name of added rule.
+ * - fn (Function): rule function.
+ * - options (Object): rule options (not mandatory).
+ *
+ * Push new rule to the end of chain. See also
+ * [[Ruler.before]], [[Ruler.after]].
+ *
+ * ##### Options:
+ *
+ * - __alt__ - array with names of "alternate" chains.
+ *
+ * ##### Example
+ *
+ * ```javascript
+ * var md = require('markdown-it')();
+ *
+ * md.core.ruler.push('my_rule', function replace(state) {
+ * //...
+ * });
+ * ```
+ **/
+ Ruler.prototype.push = function (ruleName, fn, options) {
+ var opt = options || {};
+
+ this.__rules__.push({
+ name: ruleName,
+ enabled: true,
+ fn: fn,
+ alt: opt.alt || []
+ });
+
+ this.__cache__ = null;
+ };
+
+
+ /**
+ * Ruler.enable(list [, ignoreInvalid]) -> Array
+ * - list (String|Array): list of rule names to enable.
+ * - ignoreInvalid (Boolean): set `true` to ignore errors when rule not found.
+ *
+ * Enable rules with given names. If any rule name not found - throw Error.
+ * Errors can be disabled by second param.
+ *
+ * Returns list of found rule names (if no exception happened).
+ *
+ * See also [[Ruler.disable]], [[Ruler.enableOnly]].
+ **/
+ Ruler.prototype.enable = function (list, ignoreInvalid) {
+ if (!Array.isArray(list)) { list = [ list ]; }
+
+ var result = [];
+
+ // Search by name and enable
+ list.forEach(function (name) {
+ var idx = this.__find__(name);
+
+ if (idx < 0) {
+ if (ignoreInvalid) { return; }
+ throw new Error('Rules manager: invalid rule name ' + name);
+ }
+ this.__rules__[idx].enabled = true;
+ result.push(name);
+ }, this);
+
+ this.__cache__ = null;
+ return result;
+ };
+
+
+ /**
+ * Ruler.enableOnly(list [, ignoreInvalid])
+ * - list (String|Array): list of rule names to enable (whitelist).
+ * - ignoreInvalid (Boolean): set `true` to ignore errors when rule not found.
+ *
+ * Enable rules with given names, and disable everything else. If any rule name
+ * not found - throw Error. Errors can be disabled by second param.
+ *
+ * See also [[Ruler.disable]], [[Ruler.enable]].
+ **/
+ Ruler.prototype.enableOnly = function (list, ignoreInvalid) {
+ if (!Array.isArray(list)) { list = [ list ]; }
+
+ this.__rules__.forEach(function (rule) { rule.enabled = false; });
+
+ this.enable(list, ignoreInvalid);
+ };
+
+
+ /**
+ * Ruler.disable(list [, ignoreInvalid]) -> Array
+ * - list (String|Array): list of rule names to disable.
+ * - ignoreInvalid (Boolean): set `true` to ignore errors when rule not found.
+ *
+ * Disable rules with given names. If any rule name not found - throw Error.
+ * Errors can be disabled by second param.
+ *
+ * Returns list of found rule names (if no exception happened).
+ *
+ * See also [[Ruler.enable]], [[Ruler.enableOnly]].
+ **/
+ Ruler.prototype.disable = function (list, ignoreInvalid) {
+ if (!Array.isArray(list)) { list = [ list ]; }
+
+ var result = [];
+
+ // Search by name and disable
+ list.forEach(function (name) {
+ var idx = this.__find__(name);
+
+ if (idx < 0) {
+ if (ignoreInvalid) { return; }
+ throw new Error('Rules manager: invalid rule name ' + name);
+ }
+ this.__rules__[idx].enabled = false;
+ result.push(name);
+ }, this);
+
+ this.__cache__ = null;
+ return result;
+ };
+
+
+ /**
+ * Ruler.getRules(chainName) -> Array
+ *
+ * Return array of active functions (rules) for given chain name. It analyzes
+ * rules configuration, compiles caches if not exists and returns result.
+ *
+ * Default chain name is `''` (empty string). It can't be skipped. That's
+ * done intentionally, to keep signature monomorphic for high speed.
+ **/
+ Ruler.prototype.getRules = function (chainName) {
+ if (this.__cache__ === null) {
+ this.__compile__();
+ }
+
+ // Chain can be empty, if rules disabled. But we still have to return Array.
+ return this.__cache__[chainName] || [];
+ };
+
+ module.exports = Ruler;
+
+ },{}],18:[function(require,module,exports){
+ // Block quotes
+
+ 'use strict';
+
+ var isSpace = require('../common/utils').isSpace;
+
+
+ module.exports = function blockquote(state, startLine, endLine, silent) {
+ var adjustTab,
+ ch,
+ i,
+ initial,
+ l,
+ lastLineEmpty,
+ lines,
+ nextLine,
+ offset,
+ oldBMarks,
+ oldBSCount,
+ oldIndent,
+ oldParentType,
+ oldSCount,
+ oldTShift,
+ spaceAfterMarker,
+ terminate,
+ terminatorRules,
+ token,
+ wasOutdented,
+ oldLineMax = state.lineMax,
+ pos = state.bMarks[startLine] + state.tShift[startLine],
+ max = state.eMarks[startLine];
+
+ // if it's indented more than 3 spaces, it should be a code block
+ if (state.sCount[startLine] - state.blkIndent >= 4) { return false; }
+
+ // check the block quote marker
+ if (state.src.charCodeAt(pos++) !== 0x3E/* > */) { return false; }
+
+ // we know that it's going to be a valid blockquote,
+ // so no point trying to find the end of it in silent mode
+ if (silent) { return true; }
+
+ // skip spaces after ">" and re-calculate offset
+ initial = offset = state.sCount[startLine] + pos - (state.bMarks[startLine] + state.tShift[startLine]);
+
+ // skip one optional space after '>'
+ if (state.src.charCodeAt(pos) === 0x20 /* space */) {
+ // ' > test '
+ // ^ -- position start of line here:
+ pos++;
+ initial++;
+ offset++;
+ adjustTab = false;
+ spaceAfterMarker = true;
+ } else if (state.src.charCodeAt(pos) === 0x09 /* tab */) {
+ spaceAfterMarker = true;
+
+ if ((state.bsCount[startLine] + offset) % 4 === 3) {
+ // ' >\t test '
+ // ^ -- position start of line here (tab has width===1)
+ pos++;
+ initial++;
+ offset++;
+ adjustTab = false;
+ } else {
+ // ' >\t test '
+ // ^ -- position start of line here + shift bsCount slightly
+ // to make extra space appear
+ adjustTab = true;
+ }
+ } else {
+ spaceAfterMarker = false;
+ }
+
+ oldBMarks = [ state.bMarks[startLine] ];
+ state.bMarks[startLine] = pos;
+
+ while (pos < max) {
+ ch = state.src.charCodeAt(pos);
+
+ if (isSpace(ch)) {
+ if (ch === 0x09) {
+ offset += 4 - (offset + state.bsCount[startLine] + (adjustTab ? 1 : 0)) % 4;
+ } else {
+ offset++;
+ }
+ } else {
+ break;
+ }
+
+ pos++;
+ }
+
+ oldBSCount = [ state.bsCount[startLine] ];
+ state.bsCount[startLine] = state.sCount[startLine] + 1 + (spaceAfterMarker ? 1 : 0);
+
+ lastLineEmpty = pos >= max;
+
+ oldSCount = [ state.sCount[startLine] ];
+ state.sCount[startLine] = offset - initial;
+
+ oldTShift = [ state.tShift[startLine] ];
+ state.tShift[startLine] = pos - state.bMarks[startLine];
+
+ terminatorRules = state.md.block.ruler.getRules('blockquote');
+
+ oldParentType = state.parentType;
+ state.parentType = 'blockquote';
+ wasOutdented = false;
+
+ // Search the end of the block
+ //
+ // Block ends with either:
+ // 1. an empty line outside:
+ // ```
+ // > test
+ //
+ // ```
+ // 2. an empty line inside:
+ // ```
+ // >
+ // test
+ // ```
+ // 3. another tag:
+ // ```
+ // > test
+ // - - -
+ // ```
+ for (nextLine = startLine + 1; nextLine < endLine; nextLine++) {
+ // check if it's outdented, i.e. it's inside list item and indented
+ // less than said list item:
+ //
+ // ```
+ // 1. anything
+ // > current blockquote
+ // 2. checking this line
+ // ```
+ if (state.sCount[nextLine] < state.blkIndent) wasOutdented = true;
+
+ pos = state.bMarks[nextLine] + state.tShift[nextLine];
+ max = state.eMarks[nextLine];
+
+ if (pos >= max) {
+ // Case 1: line is not inside the blockquote, and this line is empty.
+ break;
+ }
+
+ if (state.src.charCodeAt(pos++) === 0x3E/* > */ && !wasOutdented) {
+ // This line is inside the blockquote.
+
+ // skip spaces after ">" and re-calculate offset
+ initial = offset = state.sCount[nextLine] + pos - (state.bMarks[nextLine] + state.tShift[nextLine]);
+
+ // skip one optional space after '>'
+ if (state.src.charCodeAt(pos) === 0x20 /* space */) {
+ // ' > test '
+ // ^ -- position start of line here:
+ pos++;
+ initial++;
+ offset++;
+ adjustTab = false;
+ spaceAfterMarker = true;
+ } else if (state.src.charCodeAt(pos) === 0x09 /* tab */) {
+ spaceAfterMarker = true;
+
+ if ((state.bsCount[nextLine] + offset) % 4 === 3) {
+ // ' >\t test '
+ // ^ -- position start of line here (tab has width===1)
+ pos++;
+ initial++;
+ offset++;
+ adjustTab = false;
+ } else {
+ // ' >\t test '
+ // ^ -- position start of line here + shift bsCount slightly
+ // to make extra space appear
+ adjustTab = true;
+ }
+ } else {
+ spaceAfterMarker = false;
+ }
+
+ oldBMarks.push(state.bMarks[nextLine]);
+ state.bMarks[nextLine] = pos;
+
+ while (pos < max) {
+ ch = state.src.charCodeAt(pos);
+
+ if (isSpace(ch)) {
+ if (ch === 0x09) {
+ offset += 4 - (offset + state.bsCount[nextLine] + (adjustTab ? 1 : 0)) % 4;
+ } else {
+ offset++;
+ }
+ } else {
+ break;
+ }
+
+ pos++;
+ }
+
+ lastLineEmpty = pos >= max;
+
+ oldBSCount.push(state.bsCount[nextLine]);
+ state.bsCount[nextLine] = state.sCount[nextLine] + 1 + (spaceAfterMarker ? 1 : 0);
+
+ oldSCount.push(state.sCount[nextLine]);
+ state.sCount[nextLine] = offset - initial;
+
+ oldTShift.push(state.tShift[nextLine]);
+ state.tShift[nextLine] = pos - state.bMarks[nextLine];
+ continue;
+ }
+
+ // Case 2: line is not inside the blockquote, and the last line was empty.
+ if (lastLineEmpty) { break; }
+
+ // Case 3: another tag found.
+ terminate = false;
+ for (i = 0, l = terminatorRules.length; i < l; i++) {
+ if (terminatorRules[i](state, nextLine, endLine, true)) {
+ terminate = true;
+ break;
+ }
+ }
+
+ if (terminate) {
+ // Quirk to enforce "hard termination mode" for paragraphs;
+ // normally if you call `tokenize(state, startLine, nextLine)`,
+ // paragraphs will look below nextLine for paragraph continuation,
+ // but if blockquote is terminated by another tag, they shouldn't
+ state.lineMax = nextLine;
+
+ if (state.blkIndent !== 0) {
+ // state.blkIndent was non-zero, we now set it to zero,
+ // so we need to re-calculate all offsets to appear as
+ // if indent wasn't changed
+ oldBMarks.push(state.bMarks[nextLine]);
+ oldBSCount.push(state.bsCount[nextLine]);
+ oldTShift.push(state.tShift[nextLine]);
+ oldSCount.push(state.sCount[nextLine]);
+ state.sCount[nextLine] -= state.blkIndent;
+ }
+
+ break;
+ }
+
+ oldBMarks.push(state.bMarks[nextLine]);
+ oldBSCount.push(state.bsCount[nextLine]);
+ oldTShift.push(state.tShift[nextLine]);
+ oldSCount.push(state.sCount[nextLine]);
+
+ // A negative indentation means that this is a paragraph continuation
+ //
+ state.sCount[nextLine] = -1;
+ }
+
+ oldIndent = state.blkIndent;
+ state.blkIndent = 0;
+
+ token = state.push('blockquote_open', 'blockquote', 1);
+ token.markup = '>';
+ token.map = lines = [ startLine, 0 ];
+
+ state.md.block.tokenize(state, startLine, nextLine);
+
+ token = state.push('blockquote_close', 'blockquote', -1);
+ token.markup = '>';
+
+ state.lineMax = oldLineMax;
+ state.parentType = oldParentType;
+ lines[1] = state.line;
+
+ // Restore original tShift; this might not be necessary since the parser
+ // has already been here, but just to make sure we can do that.
+ for (i = 0; i < oldTShift.length; i++) {
+ state.bMarks[i + startLine] = oldBMarks[i];
+ state.tShift[i + startLine] = oldTShift[i];
+ state.sCount[i + startLine] = oldSCount[i];
+ state.bsCount[i + startLine] = oldBSCount[i];
+ }
+ state.blkIndent = oldIndent;
+
+ return true;
+ };
+
+ },{"../common/utils":4}],19:[function(require,module,exports){
+ // Code block (4 spaces padded)
+
+ 'use strict';
+
+
+ module.exports = function code(state, startLine, endLine/*, silent*/) {
+ var nextLine, last, token;
+
+ if (state.sCount[startLine] - state.blkIndent < 4) { return false; }
+
+ last = nextLine = startLine + 1;
+
+ while (nextLine < endLine) {
+ if (state.isEmpty(nextLine)) {
+ nextLine++;
+ continue;
+ }
+
+ if (state.sCount[nextLine] - state.blkIndent >= 4) {
+ nextLine++;
+ last = nextLine;
+ continue;
+ }
+ break;
+ }
+
+ state.line = last;
+
+ token = state.push('code_block', 'code', 0);
+ token.content = state.getLines(startLine, last, 4 + state.blkIndent, true);
+ token.map = [ startLine, state.line ];
+
+ return true;
+ };
+
+ },{}],20:[function(require,module,exports){
+ // fences (``` lang, ~~~ lang)
+
+ 'use strict';
+
+
+ module.exports = function fence(state, startLine, endLine, silent) {
+ var marker, len, params, nextLine, mem, token, markup,
+ haveEndMarker = false,
+ pos = state.bMarks[startLine] + state.tShift[startLine],
+ max = state.eMarks[startLine];
+
+ // if it's indented more than 3 spaces, it should be a code block
+ if (state.sCount[startLine] - state.blkIndent >= 4) { return false; }
+
+ if (pos + 3 > max) { return false; }
+
+ marker = state.src.charCodeAt(pos);
+
+ if (marker !== 0x7E/* ~ */ && marker !== 0x60 /* ` */) {
+ return false;
+ }
+
+ // scan marker length
+ mem = pos;
+ pos = state.skipChars(pos, marker);
+
+ len = pos - mem;
+
+ if (len < 3) { return false; }
+
+ markup = state.src.slice(mem, pos);
+ params = state.src.slice(pos, max);
+
+ if (marker === 0x60 /* ` */) {
+ if (params.indexOf(String.fromCharCode(marker)) >= 0) {
+ return false;
+ }
+ }
+
+ // Since start is found, we can report success here in validation mode
+ if (silent) { return true; }
+
+ // search end of block
+ nextLine = startLine;
+
+ for (;;) {
+ nextLine++;
+ if (nextLine >= endLine) {
+ // unclosed block should be autoclosed by end of document.
+ // also block seems to be autoclosed by end of parent
+ break;
+ }
+
+ pos = mem = state.bMarks[nextLine] + state.tShift[nextLine];
+ max = state.eMarks[nextLine];
+
+ if (pos < max && state.sCount[nextLine] < state.blkIndent) {
+ // non-empty line with negative indent should stop the list:
+ // - ```
+ // test
+ break;
+ }
+
+ if (state.src.charCodeAt(pos) !== marker) { continue; }
+
+ if (state.sCount[nextLine] - state.blkIndent >= 4) {
+ // closing fence should be indented less than 4 spaces
+ continue;
+ }
+
+ pos = state.skipChars(pos, marker);
+
+ // closing code fence must be at least as long as the opening one
+ if (pos - mem < len) { continue; }
+
+ // make sure tail has spaces only
+ pos = state.skipSpaces(pos);
+
+ if (pos < max) { continue; }
+
+ haveEndMarker = true;
+ // found!
+ break;
+ }
+
+ // If a fence has heading spaces, they should be removed from its inner block
+ len = state.sCount[startLine];
+
+ state.line = nextLine + (haveEndMarker ? 1 : 0);
+
+ token = state.push('fence', 'code', 0);
+ token.info = params;
+ token.content = state.getLines(startLine + 1, nextLine, len, true);
+ token.markup = markup;
+ token.map = [ startLine, state.line ];
+
+ return true;
+ };
+
+ },{}],21:[function(require,module,exports){
+ // heading (#, ##, ...)
+
+ 'use strict';
+
+ var isSpace = require('../common/utils').isSpace;
+
+
+ module.exports = function heading(state, startLine, endLine, silent) {
+ var ch, level, tmp, token,
+ pos = state.bMarks[startLine] + state.tShift[startLine],
+ max = state.eMarks[startLine];
+
+ // if it's indented more than 3 spaces, it should be a code block
+ if (state.sCount[startLine] - state.blkIndent >= 4) { return false; }
+
+ ch = state.src.charCodeAt(pos);
+
+ if (ch !== 0x23/* # */ || pos >= max) { return false; }
+
+ // count heading level
+ level = 1;
+ ch = state.src.charCodeAt(++pos);
+ while (ch === 0x23/* # */ && pos < max && level <= 6) {
+ level++;
+ ch = state.src.charCodeAt(++pos);
+ }
+
+ if (level > 6 || (pos < max && !isSpace(ch))) { return false; }
+
+ if (silent) { return true; }
+
+ // Let's cut tails like ' ### ' from the end of string
+
+ max = state.skipSpacesBack(max, pos);
+ tmp = state.skipCharsBack(max, 0x23, pos); // #
+ if (tmp > pos && isSpace(state.src.charCodeAt(tmp - 1))) {
+ max = tmp;
+ }
+
+ state.line = startLine + 1;
+
+ token = state.push('heading_open', 'h' + String(level), 1);
+ token.markup = '########'.slice(0, level);
+ token.map = [ startLine, state.line ];
+
+ token = state.push('inline', '', 0);
+ token.content = state.src.slice(pos, max).trim();
+ token.map = [ startLine, state.line ];
+ token.children = [];
+
+ token = state.push('heading_close', 'h' + String(level), -1);
+ token.markup = '########'.slice(0, level);
+
+ return true;
+ };
+
+ },{"../common/utils":4}],22:[function(require,module,exports){
+ // Horizontal rule
+
+ 'use strict';
+
+ var isSpace = require('../common/utils').isSpace;
+
+
+ module.exports = function hr(state, startLine, endLine, silent) {
+ var marker, cnt, ch, token,
+ pos = state.bMarks[startLine] + state.tShift[startLine],
+ max = state.eMarks[startLine];
+
+ // if it's indented more than 3 spaces, it should be a code block
+ if (state.sCount[startLine] - state.blkIndent >= 4) { return false; }
+
+ marker = state.src.charCodeAt(pos++);
+
+ // Check hr marker
+ if (marker !== 0x2A/* * */ &&
+ marker !== 0x2D/* - */ &&
+ marker !== 0x5F/* _ */) {
+ return false;
+ }
+
+ // markers can be mixed with spaces, but there should be at least 3 of them
+
+ cnt = 1;
+ while (pos < max) {
+ ch = state.src.charCodeAt(pos++);
+ if (ch !== marker && !isSpace(ch)) { return false; }
+ if (ch === marker) { cnt++; }
+ }
+
+ if (cnt < 3) { return false; }
+
+ if (silent) { return true; }
+
+ state.line = startLine + 1;
+
+ token = state.push('hr', 'hr', 0);
+ token.map = [ startLine, state.line ];
+ token.markup = Array(cnt + 1).join(String.fromCharCode(marker));
+
+ return true;
+ };
+
+ },{"../common/utils":4}],23:[function(require,module,exports){
+ // HTML block
+
+ 'use strict';
+
+
+ var block_names = require('../common/html_blocks');
+ var HTML_OPEN_CLOSE_TAG_RE = require('../common/html_re').HTML_OPEN_CLOSE_TAG_RE;
+
+ // An array of opening and corresponding closing sequences for html tags,
+ // last argument defines whether it can terminate a paragraph or not
+ //
+ var HTML_SEQUENCES = [
+ [ /^<(script|pre|style)(?=(\s|>|$))/i, /<\/(script|pre|style)>/i, true ],
+ [ /^/, true ],
+ [ /^<\?/, /\?>/, true ],
+ [ /^/, true ],
+ [ /^/, true ],
+ [ new RegExp('^?(' + block_names.join('|') + ')(?=(\\s|/?>|$))', 'i'), /^$/, true ],
+ [ new RegExp(HTML_OPEN_CLOSE_TAG_RE.source + '\\s*$'), /^$/, false ]
+ ];
+
+
+ module.exports = function html_block(state, startLine, endLine, silent) {
+ var i, nextLine, token, lineText,
+ pos = state.bMarks[startLine] + state.tShift[startLine],
+ max = state.eMarks[startLine];
+
+ // if it's indented more than 3 spaces, it should be a code block
+ if (state.sCount[startLine] - state.blkIndent >= 4) { return false; }
+
+ if (!state.md.options.html) { return false; }
+
+ if (state.src.charCodeAt(pos) !== 0x3C/* < */) { return false; }
+
+ lineText = state.src.slice(pos, max);
+
+ for (i = 0; i < HTML_SEQUENCES.length; i++) {
+ if (HTML_SEQUENCES[i][0].test(lineText)) { break; }
+ }
+
+ if (i === HTML_SEQUENCES.length) { return false; }
+
+ if (silent) {
+ // true if this sequence can be a terminator, false otherwise
+ return HTML_SEQUENCES[i][2];
+ }
+
+ nextLine = startLine + 1;
+
+ // If we are here - we detected HTML block.
+ // Let's roll down till block end.
+ if (!HTML_SEQUENCES[i][1].test(lineText)) {
+ for (; nextLine < endLine; nextLine++) {
+ if (state.sCount[nextLine] < state.blkIndent) { break; }
+
+ pos = state.bMarks[nextLine] + state.tShift[nextLine];
+ max = state.eMarks[nextLine];
+ lineText = state.src.slice(pos, max);
+
+ if (HTML_SEQUENCES[i][1].test(lineText)) {
+ if (lineText.length !== 0) { nextLine++; }
+ break;
+ }
+ }
+ }
+
+ state.line = nextLine;
+
+ token = state.push('html_block', '', 0);
+ token.map = [ startLine, nextLine ];
+ token.content = state.getLines(startLine, nextLine, state.blkIndent, true);
+
+ return true;
+ };
+
+ },{"../common/html_blocks":2,"../common/html_re":3}],24:[function(require,module,exports){
+ // lheading (---, ===)
+
+ 'use strict';
+
+
+ module.exports = function lheading(state, startLine, endLine/*, silent*/) {
+ var content, terminate, i, l, token, pos, max, level, marker,
+ nextLine = startLine + 1, oldParentType,
+ terminatorRules = state.md.block.ruler.getRules('paragraph');
+
+ // if it's indented more than 3 spaces, it should be a code block
+ if (state.sCount[startLine] - state.blkIndent >= 4) { return false; }
+
+ oldParentType = state.parentType;
+ state.parentType = 'paragraph'; // use paragraph to match terminatorRules
+
+ // jump line-by-line until empty one or EOF
+ for (; nextLine < endLine && !state.isEmpty(nextLine); nextLine++) {
+ // this would be a code block normally, but after paragraph
+ // it's considered a lazy continuation regardless of what's there
+ if (state.sCount[nextLine] - state.blkIndent > 3) { continue; }
+
+ //
+ // Check for underline in setext header
+ //
+ if (state.sCount[nextLine] >= state.blkIndent) {
+ pos = state.bMarks[nextLine] + state.tShift[nextLine];
+ max = state.eMarks[nextLine];
+
+ if (pos < max) {
+ marker = state.src.charCodeAt(pos);
+
+ if (marker === 0x2D/* - */ || marker === 0x3D/* = */) {
+ pos = state.skipChars(pos, marker);
+ pos = state.skipSpaces(pos);
+
+ if (pos >= max) {
+ level = (marker === 0x3D/* = */ ? 1 : 2);
+ break;
+ }
+ }
+ }
+ }
+
+ // quirk for blockquotes, this line should already be checked by that rule
+ if (state.sCount[nextLine] < 0) { continue; }
+
+ // Some tags can terminate paragraph without empty line.
+ terminate = false;
+ for (i = 0, l = terminatorRules.length; i < l; i++) {
+ if (terminatorRules[i](state, nextLine, endLine, true)) {
+ terminate = true;
+ break;
+ }
+ }
+ if (terminate) { break; }
+ }
+
+ if (!level) {
+ // Didn't find valid underline
+ return false;
+ }
+
+ content = state.getLines(startLine, nextLine, state.blkIndent, false).trim();
+
+ state.line = nextLine + 1;
+
+ token = state.push('heading_open', 'h' + String(level), 1);
+ token.markup = String.fromCharCode(marker);
+ token.map = [ startLine, state.line ];
+
+ token = state.push('inline', '', 0);
+ token.content = content;
+ token.map = [ startLine, state.line - 1 ];
+ token.children = [];
+
+ token = state.push('heading_close', 'h' + String(level), -1);
+ token.markup = String.fromCharCode(marker);
+
+ state.parentType = oldParentType;
+
+ return true;
+ };
+
+ },{}],25:[function(require,module,exports){
+ // Lists
+
+ 'use strict';
+
+ var isSpace = require('../common/utils').isSpace;
+
+
+ // Search `[-+*][\n ]`, returns next pos after marker on success
+ // or -1 on fail.
+ function skipBulletListMarker(state, startLine) {
+ var marker, pos, max, ch;
+
+ pos = state.bMarks[startLine] + state.tShift[startLine];
+ max = state.eMarks[startLine];
+
+ marker = state.src.charCodeAt(pos++);
+ // Check bullet
+ if (marker !== 0x2A/* * */ &&
+ marker !== 0x2D/* - */ &&
+ marker !== 0x2B/* + */) {
+ return -1;
+ }
+
+ if (pos < max) {
+ ch = state.src.charCodeAt(pos);
+
+ if (!isSpace(ch)) {
+ // " -test " - is not a list item
+ return -1;
+ }
+ }
+
+ return pos;
+ }
+
+ // Search `\d+[.)][\n ]`, returns next pos after marker on success
+ // or -1 on fail.
+ function skipOrderedListMarker(state, startLine) {
+ var ch,
+ start = state.bMarks[startLine] + state.tShift[startLine],
+ pos = start,
+ max = state.eMarks[startLine];
+
+ // List marker should have at least 2 chars (digit + dot)
+ if (pos + 1 >= max) { return -1; }
+
+ ch = state.src.charCodeAt(pos++);
+
+ if (ch < 0x30/* 0 */ || ch > 0x39/* 9 */) { return -1; }
+
+ for (;;) {
+ // EOL -> fail
+ if (pos >= max) { return -1; }
+
+ ch = state.src.charCodeAt(pos++);
+
+ if (ch >= 0x30/* 0 */ && ch <= 0x39/* 9 */) {
+
+ // List marker should have no more than 9 digits
+ // (prevents integer overflow in browsers)
+ if (pos - start >= 10) { return -1; }
+
+ continue;
+ }
+
+ // found valid marker
+ if (ch === 0x29/* ) */ || ch === 0x2e/* . */) {
+ break;
+ }
+
+ return -1;
+ }
+
+
+ if (pos < max) {
+ ch = state.src.charCodeAt(pos);
+
+ if (!isSpace(ch)) {
+ // " 1.test " - is not a list item
+ return -1;
+ }
+ }
+ return pos;
+ }
+
+ function markTightParagraphs(state, idx) {
+ var i, l,
+ level = state.level + 2;
+
+ for (i = idx + 2, l = state.tokens.length - 2; i < l; i++) {
+ if (state.tokens[i].level === level && state.tokens[i].type === 'paragraph_open') {
+ state.tokens[i + 2].hidden = true;
+ state.tokens[i].hidden = true;
+ i += 2;
+ }
+ }
+ }
+
+
+ module.exports = function list(state, startLine, endLine, silent) {
+ var ch,
+ contentStart,
+ i,
+ indent,
+ indentAfterMarker,
+ initial,
+ isOrdered,
+ itemLines,
+ l,
+ listLines,
+ listTokIdx,
+ markerCharCode,
+ markerValue,
+ max,
+ nextLine,
+ offset,
+ oldListIndent,
+ oldParentType,
+ oldSCount,
+ oldTShift,
+ oldTight,
+ pos,
+ posAfterMarker,
+ prevEmptyEnd,
+ start,
+ terminate,
+ terminatorRules,
+ token,
+ isTerminatingParagraph = false,
+ tight = true;
+
+ // if it's indented more than 3 spaces, it should be a code block
+ if (state.sCount[startLine] - state.blkIndent >= 4) { return false; }
+
+ // Special case:
+ // - item 1
+ // - item 2
+ // - item 3
+ // - item 4
+ // - this one is a paragraph continuation
+ if (state.listIndent >= 0 &&
+ state.sCount[startLine] - state.listIndent >= 4 &&
+ state.sCount[startLine] < state.blkIndent) {
+ return false;
+ }
+
+ // limit conditions when list can interrupt
+ // a paragraph (validation mode only)
+ if (silent && state.parentType === 'paragraph') {
+ // Next list item should still terminate previous list item;
+ //
+ // This code can fail if plugins use blkIndent as well as lists,
+ // but I hope the spec gets fixed long before that happens.
+ //
+ if (state.tShift[startLine] >= state.blkIndent) {
+ isTerminatingParagraph = true;
+ }
+ }
+
+ // Detect list type and position after marker
+ if ((posAfterMarker = skipOrderedListMarker(state, startLine)) >= 0) {
+ isOrdered = true;
+ start = state.bMarks[startLine] + state.tShift[startLine];
+ markerValue = Number(state.src.substr(start, posAfterMarker - start - 1));
+
+ // If we're starting a new ordered list right after
+ // a paragraph, it should start with 1.
+ if (isTerminatingParagraph && markerValue !== 1) return false;
+
+ } else if ((posAfterMarker = skipBulletListMarker(state, startLine)) >= 0) {
+ isOrdered = false;
+
+ } else {
+ return false;
+ }
+
+ // If we're starting a new unordered list right after
+ // a paragraph, first line should not be empty.
+ if (isTerminatingParagraph) {
+ if (state.skipSpaces(posAfterMarker) >= state.eMarks[startLine]) return false;
+ }
+
+ // We should terminate list on style change. Remember first one to compare.
+ markerCharCode = state.src.charCodeAt(posAfterMarker - 1);
+
+ // For validation mode we can terminate immediately
+ if (silent) { return true; }
+
+ // Start list
+ listTokIdx = state.tokens.length;
+
+ if (isOrdered) {
+ token = state.push('ordered_list_open', 'ol', 1);
+ if (markerValue !== 1) {
+ token.attrs = [ [ 'start', markerValue ] ];
+ }
+
+ } else {
+ token = state.push('bullet_list_open', 'ul', 1);
+ }
+
+ token.map = listLines = [ startLine, 0 ];
+ token.markup = String.fromCharCode(markerCharCode);
+
+ //
+ // Iterate list items
+ //
+
+ nextLine = startLine;
+ prevEmptyEnd = false;
+ terminatorRules = state.md.block.ruler.getRules('list');
+
+ oldParentType = state.parentType;
+ state.parentType = 'list';
+
+ while (nextLine < endLine) {
+ pos = posAfterMarker;
+ max = state.eMarks[nextLine];
+
+ initial = offset = state.sCount[nextLine] + posAfterMarker - (state.bMarks[startLine] + state.tShift[startLine]);
+
+ while (pos < max) {
+ ch = state.src.charCodeAt(pos);
+
+ if (ch === 0x09) {
+ offset += 4 - (offset + state.bsCount[nextLine]) % 4;
+ } else if (ch === 0x20) {
+ offset++;
+ } else {
+ break;
+ }
+
+ pos++;
+ }
+
+ contentStart = pos;
+
+ if (contentStart >= max) {
+ // trimming space in "- \n 3" case, indent is 1 here
+ indentAfterMarker = 1;
+ } else {
+ indentAfterMarker = offset - initial;
+ }
+
+ // If we have more than 4 spaces, the indent is 1
+ // (the rest is just indented code block)
+ if (indentAfterMarker > 4) { indentAfterMarker = 1; }
+
+ // " - test"
+ // ^^^^^ - calculating total length of this thing
+ indent = initial + indentAfterMarker;
+
+ // Run subparser & write tokens
+ token = state.push('list_item_open', 'li', 1);
+ token.markup = String.fromCharCode(markerCharCode);
+ token.map = itemLines = [ startLine, 0 ];
+
+ // change current state, then restore it after parser subcall
+ oldTight = state.tight;
+ oldTShift = state.tShift[startLine];
+ oldSCount = state.sCount[startLine];
+
+ // - example list
+ // ^ listIndent position will be here
+ // ^ blkIndent position will be here
+ //
+ oldListIndent = state.listIndent;
+ state.listIndent = state.blkIndent;
+ state.blkIndent = indent;
+
+ state.tight = true;
+ state.tShift[startLine] = contentStart - state.bMarks[startLine];
+ state.sCount[startLine] = offset;
+
+ if (contentStart >= max && state.isEmpty(startLine + 1)) {
+ // workaround for this case
+ // (list item is empty, list terminates before "foo"):
+ // ~~~~~~~~
+ // -
+ //
+ // foo
+ // ~~~~~~~~
+ state.line = Math.min(state.line + 2, endLine);
+ } else {
+ state.md.block.tokenize(state, startLine, endLine, true);
+ }
+
+ // If any of list item is tight, mark list as tight
+ if (!state.tight || prevEmptyEnd) {
+ tight = false;
+ }
+ // Item become loose if finish with empty line,
+ // but we should filter last element, because it means list finish
+ prevEmptyEnd = (state.line - startLine) > 1 && state.isEmpty(state.line - 1);
+
+ state.blkIndent = state.listIndent;
+ state.listIndent = oldListIndent;
+ state.tShift[startLine] = oldTShift;
+ state.sCount[startLine] = oldSCount;
+ state.tight = oldTight;
+
+ token = state.push('list_item_close', 'li', -1);
+ token.markup = String.fromCharCode(markerCharCode);
+
+ nextLine = startLine = state.line;
+ itemLines[1] = nextLine;
+ contentStart = state.bMarks[startLine];
+
+ if (nextLine >= endLine) { break; }
+
+ //
+ // Try to check if list is terminated or continued.
+ //
+ if (state.sCount[nextLine] < state.blkIndent) { break; }
+
+ // if it's indented more than 3 spaces, it should be a code block
+ if (state.sCount[startLine] - state.blkIndent >= 4) { break; }
+
+ // fail if terminating block found
+ terminate = false;
+ for (i = 0, l = terminatorRules.length; i < l; i++) {
+ if (terminatorRules[i](state, nextLine, endLine, true)) {
+ terminate = true;
+ break;
+ }
+ }
+ if (terminate) { break; }
+
+ // fail if list has another type
+ if (isOrdered) {
+ posAfterMarker = skipOrderedListMarker(state, nextLine);
+ if (posAfterMarker < 0) { break; }
+ } else {
+ posAfterMarker = skipBulletListMarker(state, nextLine);
+ if (posAfterMarker < 0) { break; }
+ }
+
+ if (markerCharCode !== state.src.charCodeAt(posAfterMarker - 1)) { break; }
+ }
+
+ // Finalize list
+ if (isOrdered) {
+ token = state.push('ordered_list_close', 'ol', -1);
+ } else {
+ token = state.push('bullet_list_close', 'ul', -1);
+ }
+ token.markup = String.fromCharCode(markerCharCode);
+
+ listLines[1] = nextLine;
+ state.line = nextLine;
+
+ state.parentType = oldParentType;
+
+ // mark paragraphs tight if needed
+ if (tight) {
+ markTightParagraphs(state, listTokIdx);
+ }
+
+ return true;
+ };
+
+ },{"../common/utils":4}],26:[function(require,module,exports){
+ // Paragraph
+
+ 'use strict';
+
+
+ module.exports = function paragraph(state, startLine/*, endLine*/) {
+ var content, terminate, i, l, token, oldParentType,
+ nextLine = startLine + 1,
+ terminatorRules = state.md.block.ruler.getRules('paragraph'),
+ endLine = state.lineMax;
+
+ oldParentType = state.parentType;
+ state.parentType = 'paragraph';
+
+ // jump line-by-line until empty one or EOF
+ for (; nextLine < endLine && !state.isEmpty(nextLine); nextLine++) {
+ // this would be a code block normally, but after paragraph
+ // it's considered a lazy continuation regardless of what's there
+ if (state.sCount[nextLine] - state.blkIndent > 3) { continue; }
+
+ // quirk for blockquotes, this line should already be checked by that rule
+ if (state.sCount[nextLine] < 0) { continue; }
+
+ // Some tags can terminate paragraph without empty line.
+ terminate = false;
+ for (i = 0, l = terminatorRules.length; i < l; i++) {
+ if (terminatorRules[i](state, nextLine, endLine, true)) {
+ terminate = true;
+ break;
+ }
+ }
+ if (terminate) { break; }
+ }
+
+ content = state.getLines(startLine, nextLine, state.blkIndent, false).trim();
+
+ state.line = nextLine;
+
+ token = state.push('paragraph_open', 'p', 1);
+ token.map = [ startLine, state.line ];
+
+ token = state.push('inline', '', 0);
+ token.content = content;
+ token.map = [ startLine, state.line ];
+ token.children = [];
+
+ token = state.push('paragraph_close', 'p', -1);
+
+ state.parentType = oldParentType;
+
+ return true;
+ };
+
+ },{}],27:[function(require,module,exports){
+ 'use strict';
+
+
+ var normalizeReference = require('../common/utils').normalizeReference;
+ var isSpace = require('../common/utils').isSpace;
+
+
+ module.exports = function reference(state, startLine, _endLine, silent) {
+ var ch,
+ destEndPos,
+ destEndLineNo,
+ endLine,
+ href,
+ i,
+ l,
+ label,
+ labelEnd,
+ oldParentType,
+ res,
+ start,
+ str,
+ terminate,
+ terminatorRules,
+ title,
+ lines = 0,
+ pos = state.bMarks[startLine] + state.tShift[startLine],
+ max = state.eMarks[startLine],
+ nextLine = startLine + 1;
+
+ // if it's indented more than 3 spaces, it should be a code block
+ if (state.sCount[startLine] - state.blkIndent >= 4) { return false; }
+
+ if (state.src.charCodeAt(pos) !== 0x5B/* [ */) { return false; }
+
+ // Simple check to quickly interrupt scan on [link](url) at the start of line.
+ // Can be useful on practice: https://github.com/markdown-it/markdown-it/issues/54
+ while (++pos < max) {
+ if (state.src.charCodeAt(pos) === 0x5D /* ] */ &&
+ state.src.charCodeAt(pos - 1) !== 0x5C/* \ */) {
+ if (pos + 1 === max) { return false; }
+ if (state.src.charCodeAt(pos + 1) !== 0x3A/* : */) { return false; }
+ break;
+ }
+ }
+
+ endLine = state.lineMax;
+
+ // jump line-by-line until empty one or EOF
+ terminatorRules = state.md.block.ruler.getRules('reference');
+
+ oldParentType = state.parentType;
+ state.parentType = 'reference';
+
+ for (; nextLine < endLine && !state.isEmpty(nextLine); nextLine++) {
+ // this would be a code block normally, but after paragraph
+ // it's considered a lazy continuation regardless of what's there
+ if (state.sCount[nextLine] - state.blkIndent > 3) { continue; }
+
+ // quirk for blockquotes, this line should already be checked by that rule
+ if (state.sCount[nextLine] < 0) { continue; }
+
+ // Some tags can terminate paragraph without empty line.
+ terminate = false;
+ for (i = 0, l = terminatorRules.length; i < l; i++) {
+ if (terminatorRules[i](state, nextLine, endLine, true)) {
+ terminate = true;
+ break;
+ }
+ }
+ if (terminate) { break; }
+ }
+
+ str = state.getLines(startLine, nextLine, state.blkIndent, false).trim();
+ max = str.length;
+
+ for (pos = 1; pos < max; pos++) {
+ ch = str.charCodeAt(pos);
+ if (ch === 0x5B /* [ */) {
+ return false;
+ } else if (ch === 0x5D /* ] */) {
+ labelEnd = pos;
+ break;
+ } else if (ch === 0x0A /* \n */) {
+ lines++;
+ } else if (ch === 0x5C /* \ */) {
+ pos++;
+ if (pos < max && str.charCodeAt(pos) === 0x0A) {
+ lines++;
+ }
+ }
+ }
+
+ if (labelEnd < 0 || str.charCodeAt(labelEnd + 1) !== 0x3A/* : */) { return false; }
+
+ // [label]: destination 'title'
+ // ^^^ skip optional whitespace here
+ for (pos = labelEnd + 2; pos < max; pos++) {
+ ch = str.charCodeAt(pos);
+ if (ch === 0x0A) {
+ lines++;
+ } else if (isSpace(ch)) {
+ /*eslint no-empty:0*/
+ } else {
+ break;
+ }
+ }
+
+ // [label]: destination 'title'
+ // ^^^^^^^^^^^ parse this
+ res = state.md.helpers.parseLinkDestination(str, pos, max);
+ if (!res.ok) { return false; }
+
+ href = state.md.normalizeLink(res.str);
+ if (!state.md.validateLink(href)) { return false; }
+
+ pos = res.pos;
+ lines += res.lines;
+
+ // save cursor state, we could require to rollback later
+ destEndPos = pos;
+ destEndLineNo = lines;
+
+ // [label]: destination 'title'
+ // ^^^ skipping those spaces
+ start = pos;
+ for (; pos < max; pos++) {
+ ch = str.charCodeAt(pos);
+ if (ch === 0x0A) {
+ lines++;
+ } else if (isSpace(ch)) {
+ /*eslint no-empty:0*/
+ } else {
+ break;
+ }
+ }
+
+ // [label]: destination 'title'
+ // ^^^^^^^ parse this
+ res = state.md.helpers.parseLinkTitle(str, pos, max);
+ if (pos < max && start !== pos && res.ok) {
+ title = res.str;
+ pos = res.pos;
+ lines += res.lines;
+ } else {
+ title = '';
+ pos = destEndPos;
+ lines = destEndLineNo;
+ }
+
+ // skip trailing spaces until the rest of the line
+ while (pos < max) {
+ ch = str.charCodeAt(pos);
+ if (!isSpace(ch)) { break; }
+ pos++;
+ }
+
+ if (pos < max && str.charCodeAt(pos) !== 0x0A) {
+ if (title) {
+ // garbage at the end of the line after title,
+ // but it could still be a valid reference if we roll back
+ title = '';
+ pos = destEndPos;
+ lines = destEndLineNo;
+ while (pos < max) {
+ ch = str.charCodeAt(pos);
+ if (!isSpace(ch)) { break; }
+ pos++;
+ }
+ }
+ }
+
+ if (pos < max && str.charCodeAt(pos) !== 0x0A) {
+ // garbage at the end of the line
+ return false;
+ }
+
+ label = normalizeReference(str.slice(1, labelEnd));
+ if (!label) {
+ // CommonMark 0.20 disallows empty labels
+ return false;
+ }
+
+ // Reference can not terminate anything. This check is for safety only.
+ /*istanbul ignore if*/
+ if (silent) { return true; }
+
+ if (typeof state.env.references === 'undefined') {
+ state.env.references = {};
+ }
+ if (typeof state.env.references[label] === 'undefined') {
+ state.env.references[label] = { title: title, href: href };
+ }
+
+ state.parentType = oldParentType;
+
+ state.line = startLine + lines + 1;
+ return true;
+ };
+
+ },{"../common/utils":4}],28:[function(require,module,exports){
+ // Parser state class
+
+ 'use strict';
+
+ var Token = require('../token');
+ var isSpace = require('../common/utils').isSpace;
+
+
+ function StateBlock(src, md, env, tokens) {
+ var ch, s, start, pos, len, indent, offset, indent_found;
+
+ this.src = src;
+
+ // link to parser instance
+ this.md = md;
+
+ this.env = env;
+
+ //
+ // Internal state vartiables
+ //
+
+ this.tokens = tokens;
+
+ this.bMarks = []; // line begin offsets for fast jumps
+ this.eMarks = []; // line end offsets for fast jumps
+ this.tShift = []; // offsets of the first non-space characters (tabs not expanded)
+ this.sCount = []; // indents for each line (tabs expanded)
+
+ // An amount of virtual spaces (tabs expanded) between beginning
+ // of each line (bMarks) and real beginning of that line.
+ //
+ // It exists only as a hack because blockquotes override bMarks
+ // losing information in the process.
+ //
+ // It's used only when expanding tabs, you can think about it as
+ // an initial tab length, e.g. bsCount=21 applied to string `\t123`
+ // means first tab should be expanded to 4-21%4 === 3 spaces.
+ //
+ this.bsCount = [];
+
+ // block parser variables
+ this.blkIndent = 0; // required block content indent (for example, if we are
+ // inside a list, it would be positioned after list marker)
+ this.line = 0; // line index in src
+ this.lineMax = 0; // lines count
+ this.tight = false; // loose/tight mode for lists
+ this.ddIndent = -1; // indent of the current dd block (-1 if there isn't any)
+ this.listIndent = -1; // indent of the current list block (-1 if there isn't any)
+
+ // can be 'blockquote', 'list', 'root', 'paragraph' or 'reference'
+ // used in lists to determine if they interrupt a paragraph
+ this.parentType = 'root';
+
+ this.level = 0;
+
+ // renderer
+ this.result = '';
+
+ // Create caches
+ // Generate markers.
+ s = this.src;
+ indent_found = false;
+
+ for (start = pos = indent = offset = 0, len = s.length; pos < len; pos++) {
+ ch = s.charCodeAt(pos);
+
+ if (!indent_found) {
+ if (isSpace(ch)) {
+ indent++;
+
+ if (ch === 0x09) {
+ offset += 4 - offset % 4;
+ } else {
+ offset++;
+ }
+ continue;
+ } else {
+ indent_found = true;
+ }
+ }
+
+ if (ch === 0x0A || pos === len - 1) {
+ if (ch !== 0x0A) { pos++; }
+ this.bMarks.push(start);
+ this.eMarks.push(pos);
+ this.tShift.push(indent);
+ this.sCount.push(offset);
+ this.bsCount.push(0);
+
+ indent_found = false;
+ indent = 0;
+ offset = 0;
+ start = pos + 1;
+ }
+ }
+
+ // Push fake entry to simplify cache bounds checks
+ this.bMarks.push(s.length);
+ this.eMarks.push(s.length);
+ this.tShift.push(0);
+ this.sCount.push(0);
+ this.bsCount.push(0);
+
+ this.lineMax = this.bMarks.length - 1; // don't count last fake line
+ }
+
+ // Push new token to "stream".
+ //
+ StateBlock.prototype.push = function (type, tag, nesting) {
+ var token = new Token(type, tag, nesting);
+ token.block = true;
+
+ if (nesting < 0) this.level--; // closing tag
+ token.level = this.level;
+ if (nesting > 0) this.level++; // opening tag
+
+ this.tokens.push(token);
+ return token;
+ };
+
+ StateBlock.prototype.isEmpty = function isEmpty(line) {
+ return this.bMarks[line] + this.tShift[line] >= this.eMarks[line];
+ };
+
+ StateBlock.prototype.skipEmptyLines = function skipEmptyLines(from) {
+ for (var max = this.lineMax; from < max; from++) {
+ if (this.bMarks[from] + this.tShift[from] < this.eMarks[from]) {
+ break;
+ }
+ }
+ return from;
+ };
+
+ // Skip spaces from given position.
+ StateBlock.prototype.skipSpaces = function skipSpaces(pos) {
+ var ch;
+
+ for (var max = this.src.length; pos < max; pos++) {
+ ch = this.src.charCodeAt(pos);
+ if (!isSpace(ch)) { break; }
+ }
+ return pos;
+ };
+
+ // Skip spaces from given position in reverse.
+ StateBlock.prototype.skipSpacesBack = function skipSpacesBack(pos, min) {
+ if (pos <= min) { return pos; }
+
+ while (pos > min) {
+ if (!isSpace(this.src.charCodeAt(--pos))) { return pos + 1; }
+ }
+ return pos;
+ };
+
+ // Skip char codes from given position
+ StateBlock.prototype.skipChars = function skipChars(pos, code) {
+ for (var max = this.src.length; pos < max; pos++) {
+ if (this.src.charCodeAt(pos) !== code) { break; }
+ }
+ return pos;
+ };
+
+ // Skip char codes reverse from given position - 1
+ StateBlock.prototype.skipCharsBack = function skipCharsBack(pos, code, min) {
+ if (pos <= min) { return pos; }
+
+ while (pos > min) {
+ if (code !== this.src.charCodeAt(--pos)) { return pos + 1; }
+ }
+ return pos;
+ };
+
+ // cut lines range from source.
+ StateBlock.prototype.getLines = function getLines(begin, end, indent, keepLastLF) {
+ var i, lineIndent, ch, first, last, queue, lineStart,
+ line = begin;
+
+ if (begin >= end) {
+ return '';
+ }
+
+ queue = new Array(end - begin);
+
+ for (i = 0; line < end; line++, i++) {
+ lineIndent = 0;
+ lineStart = first = this.bMarks[line];
+
+ if (line + 1 < end || keepLastLF) {
+ // No need for bounds check because we have fake entry on tail.
+ last = this.eMarks[line] + 1;
+ } else {
+ last = this.eMarks[line];
+ }
+
+ while (first < last && lineIndent < indent) {
+ ch = this.src.charCodeAt(first);
+
+ if (isSpace(ch)) {
+ if (ch === 0x09) {
+ lineIndent += 4 - (lineIndent + this.bsCount[line]) % 4;
+ } else {
+ lineIndent++;
+ }
+ } else if (first - lineStart < this.tShift[line]) {
+ // patched tShift masked characters to look like spaces (blockquotes, list markers)
+ lineIndent++;
+ } else {
+ break;
+ }
+
+ first++;
+ }
+
+ if (lineIndent > indent) {
+ // partially expanding tabs in code blocks, e.g '\t\tfoobar'
+ // with indent=2 becomes ' \tfoobar'
+ queue[i] = new Array(lineIndent - indent + 1).join(' ') + this.src.slice(first, last);
+ } else {
+ queue[i] = this.src.slice(first, last);
+ }
+ }
+
+ return queue.join('');
+ };
+
+ // re-export Token class to use in block rules
+ StateBlock.prototype.Token = Token;
+
+
+ module.exports = StateBlock;
+
+ },{"../common/utils":4,"../token":51}],29:[function(require,module,exports){
+ // GFM table, non-standard
+
+ 'use strict';
+
+ var isSpace = require('../common/utils').isSpace;
+
+
+ function getLine(state, line) {
+ var pos = state.bMarks[line] + state.blkIndent,
+ max = state.eMarks[line];
+
+ return state.src.substr(pos, max - pos);
+ }
+
+ function escapedSplit(str) {
+ var result = [],
+ pos = 0,
+ max = str.length,
+ ch,
+ escapes = 0,
+ lastPos = 0,
+ backTicked = false,
+ lastBackTick = 0;
+
+ ch = str.charCodeAt(pos);
+
+ while (pos < max) {
+ if (ch === 0x60/* ` */) {
+ if (backTicked) {
+ // make \` close code sequence, but not open it;
+ // the reason is: `\` is correct code block
+ backTicked = false;
+ lastBackTick = pos;
+ } else if (escapes % 2 === 0) {
+ backTicked = true;
+ lastBackTick = pos;
+ }
+ } else if (ch === 0x7c/* | */ && (escapes % 2 === 0) && !backTicked) {
+ result.push(str.substring(lastPos, pos));
+ lastPos = pos + 1;
+ }
+
+ if (ch === 0x5c/* \ */) {
+ escapes++;
+ } else {
+ escapes = 0;
+ }
+
+ pos++;
+
+ // If there was an un-closed backtick, go back to just after
+ // the last backtick, but as if it was a normal character
+ if (pos === max && backTicked) {
+ backTicked = false;
+ pos = lastBackTick + 1;
+ }
+
+ ch = str.charCodeAt(pos);
+ }
+
+ result.push(str.substring(lastPos));
+
+ return result;
+ }
+
+
+ module.exports = function table(state, startLine, endLine, silent) {
+ var ch, lineText, pos, i, nextLine, columns, columnCount, token,
+ aligns, t, tableLines, tbodyLines;
+
+ // should have at least two lines
+ if (startLine + 2 > endLine) { return false; }
+
+ nextLine = startLine + 1;
+
+ if (state.sCount[nextLine] < state.blkIndent) { return false; }
+
+ // if it's indented more than 3 spaces, it should be a code block
+ if (state.sCount[nextLine] - state.blkIndent >= 4) { return false; }
+
+ // first character of the second line should be '|', '-', ':',
+ // and no other characters are allowed but spaces;
+ // basically, this is the equivalent of /^[-:|][-:|\s]*$/ regexp
+
+ pos = state.bMarks[nextLine] + state.tShift[nextLine];
+ if (pos >= state.eMarks[nextLine]) { return false; }
+
+ ch = state.src.charCodeAt(pos++);
+ if (ch !== 0x7C/* | */ && ch !== 0x2D/* - */ && ch !== 0x3A/* : */) { return false; }
+
+ while (pos < state.eMarks[nextLine]) {
+ ch = state.src.charCodeAt(pos);
+
+ if (ch !== 0x7C/* | */ && ch !== 0x2D/* - */ && ch !== 0x3A/* : */ && !isSpace(ch)) { return false; }
+
+ pos++;
+ }
+
+ lineText = getLine(state, startLine + 1);
+
+ columns = lineText.split('|');
+ aligns = [];
+ for (i = 0; i < columns.length; i++) {
+ t = columns[i].trim();
+ if (!t) {
+ // allow empty columns before and after table, but not in between columns;
+ // e.g. allow ` |---| `, disallow ` ---||--- `
+ if (i === 0 || i === columns.length - 1) {
+ continue;
+ } else {
+ return false;
+ }
+ }
+
+ if (!/^:?-+:?$/.test(t)) { return false; }
+ if (t.charCodeAt(t.length - 1) === 0x3A/* : */) {
+ aligns.push(t.charCodeAt(0) === 0x3A/* : */ ? 'center' : 'right');
+ } else if (t.charCodeAt(0) === 0x3A/* : */) {
+ aligns.push('left');
+ } else {
+ aligns.push('');
+ }
+ }
+
+ lineText = getLine(state, startLine).trim();
+ if (lineText.indexOf('|') === -1) { return false; }
+ if (state.sCount[startLine] - state.blkIndent >= 4) { return false; }
+ columns = escapedSplit(lineText.replace(/^\||\|$/g, ''));
+
+ // header row will define an amount of columns in the entire table,
+ // and align row shouldn't be smaller than that (the rest of the rows can)
+ columnCount = columns.length;
+ if (columnCount > aligns.length) { return false; }
+
+ if (silent) { return true; }
+
+ token = state.push('table_open', 'table', 1);
+ token.map = tableLines = [ startLine, 0 ];
+
+ token = state.push('thead_open', 'thead', 1);
+ token.map = [ startLine, startLine + 1 ];
+
+ token = state.push('tr_open', 'tr', 1);
+ token.map = [ startLine, startLine + 1 ];
+
+ for (i = 0; i < columns.length; i++) {
+ token = state.push('th_open', 'th', 1);
+ token.map = [ startLine, startLine + 1 ];
+ if (aligns[i]) {
+ token.attrs = [ [ 'style', 'text-align:' + aligns[i] ] ];
+ }
+
+ token = state.push('inline', '', 0);
+ token.content = columns[i].trim();
+ token.map = [ startLine, startLine + 1 ];
+ token.children = [];
+
+ token = state.push('th_close', 'th', -1);
+ }
+
+ token = state.push('tr_close', 'tr', -1);
+ token = state.push('thead_close', 'thead', -1);
+
+ token = state.push('tbody_open', 'tbody', 1);
+ token.map = tbodyLines = [ startLine + 2, 0 ];
+
+ for (nextLine = startLine + 2; nextLine < endLine; nextLine++) {
+ if (state.sCount[nextLine] < state.blkIndent) { break; }
+
+ lineText = getLine(state, nextLine).trim();
+ if (lineText.indexOf('|') === -1) { break; }
+ if (state.sCount[nextLine] - state.blkIndent >= 4) { break; }
+ columns = escapedSplit(lineText.replace(/^\||\|$/g, ''));
+
+ token = state.push('tr_open', 'tr', 1);
+ for (i = 0; i < columnCount; i++) {
+ token = state.push('td_open', 'td', 1);
+ if (aligns[i]) {
+ token.attrs = [ [ 'style', 'text-align:' + aligns[i] ] ];
+ }
+
+ token = state.push('inline', '', 0);
+ token.content = columns[i] ? columns[i].trim() : '';
+ token.children = [];
+
+ token = state.push('td_close', 'td', -1);
+ }
+ token = state.push('tr_close', 'tr', -1);
+ }
+ token = state.push('tbody_close', 'tbody', -1);
+ token = state.push('table_close', 'table', -1);
+
+ tableLines[1] = tbodyLines[1] = nextLine;
+ state.line = nextLine;
+ return true;
+ };
+
+ },{"../common/utils":4}],30:[function(require,module,exports){
+ 'use strict';
+
+
+ module.exports = function block(state) {
+ var token;
+
+ if (state.inlineMode) {
+ token = new state.Token('inline', '', 0);
+ token.content = state.src;
+ token.map = [ 0, 1 ];
+ token.children = [];
+ state.tokens.push(token);
+ } else {
+ state.md.block.parse(state.src, state.md, state.env, state.tokens);
+ }
+ };
+
+ },{}],31:[function(require,module,exports){
+ 'use strict';
+
+ module.exports = function inline(state) {
+ var tokens = state.tokens, tok, i, l;
+
+ // Parse inlines
+ for (i = 0, l = tokens.length; i < l; i++) {
+ tok = tokens[i];
+ if (tok.type === 'inline') {
+ state.md.inline.parse(tok.content, state.md, state.env, tok.children);
+ }
+ }
+ };
+
+ },{}],32:[function(require,module,exports){
+ // Replace link-like texts with link nodes.
+ //
+ // Currently restricted by `md.validateLink()` to http/https/ftp
+ //
+ 'use strict';
+
+
+ var arrayReplaceAt = require('../common/utils').arrayReplaceAt;
+
+
+ function isLinkOpen(str) {
+ return /^\s]/i.test(str);
+ }
+ function isLinkClose(str) {
+ return /^<\/a\s*>/i.test(str);
+ }
+
+
+ module.exports = function linkify(state) {
+ var i, j, l, tokens, token, currentToken, nodes, ln, text, pos, lastPos,
+ level, htmlLinkLevel, url, fullUrl, urlText,
+ blockTokens = state.tokens,
+ links;
+
+ if (!state.md.options.linkify) { return; }
+
+ for (j = 0, l = blockTokens.length; j < l; j++) {
+ if (blockTokens[j].type !== 'inline' ||
+ !state.md.linkify.pretest(blockTokens[j].content)) {
+ continue;
+ }
+
+ tokens = blockTokens[j].children;
+
+ htmlLinkLevel = 0;
+
+ // We scan from the end, to keep position when new tags added.
+ // Use reversed logic in links start/end match
+ for (i = tokens.length - 1; i >= 0; i--) {
+ currentToken = tokens[i];
+
+ // Skip content of markdown links
+ if (currentToken.type === 'link_close') {
+ i--;
+ while (tokens[i].level !== currentToken.level && tokens[i].type !== 'link_open') {
+ i--;
+ }
+ continue;
+ }
+
+ // Skip content of html tag links
+ if (currentToken.type === 'html_inline') {
+ if (isLinkOpen(currentToken.content) && htmlLinkLevel > 0) {
+ htmlLinkLevel--;
+ }
+ if (isLinkClose(currentToken.content)) {
+ htmlLinkLevel++;
+ }
+ }
+ if (htmlLinkLevel > 0) { continue; }
+
+ if (currentToken.type === 'text' && state.md.linkify.test(currentToken.content)) {
+
+ text = currentToken.content;
+ links = state.md.linkify.match(text);
+
+ // Now split string to nodes
+ nodes = [];
+ level = currentToken.level;
+ lastPos = 0;
+
+ for (ln = 0; ln < links.length; ln++) {
+
+ url = links[ln].url;
+ fullUrl = state.md.normalizeLink(url);
+ if (!state.md.validateLink(fullUrl)) { continue; }
+
+ urlText = links[ln].text;
+
+ // Linkifier might send raw hostnames like "example.com", where url
+ // starts with domain name. So we prepend http:// in those cases,
+ // and remove it afterwards.
+ //
+ if (!links[ln].schema) {
+ urlText = state.md.normalizeLinkText('http://' + urlText).replace(/^http:\/\//, '');
+ } else if (links[ln].schema === 'mailto:' && !/^mailto:/i.test(urlText)) {
+ urlText = state.md.normalizeLinkText('mailto:' + urlText).replace(/^mailto:/, '');
+ } else {
+ urlText = state.md.normalizeLinkText(urlText);
+ }
+
+ pos = links[ln].index;
+
+ if (pos > lastPos) {
+ token = new state.Token('text', '', 0);
+ token.content = text.slice(lastPos, pos);
+ token.level = level;
+ nodes.push(token);
+ }
+
+ token = new state.Token('link_open', 'a', 1);
+ token.attrs = [ [ 'href', fullUrl ] ];
+ token.level = level++;
+ token.markup = 'linkify';
+ token.info = 'auto';
+ nodes.push(token);
+
+ token = new state.Token('text', '', 0);
+ token.content = urlText;
+ token.level = level;
+ nodes.push(token);
+
+ token = new state.Token('link_close', 'a', -1);
+ token.level = --level;
+ token.markup = 'linkify';
+ token.info = 'auto';
+ nodes.push(token);
+
+ lastPos = links[ln].lastIndex;
+ }
+ if (lastPos < text.length) {
+ token = new state.Token('text', '', 0);
+ token.content = text.slice(lastPos);
+ token.level = level;
+ nodes.push(token);
+ }
+
+ // replace current node
+ blockTokens[j].children = tokens = arrayReplaceAt(tokens, i, nodes);
+ }
+ }
+ }
+ };
+
+ },{"../common/utils":4}],33:[function(require,module,exports){
+ // Normalize input string
+
+ 'use strict';
+
+
+ // https://spec.commonmark.org/0.29/#line-ending
+ var NEWLINES_RE = /\r\n?|\n/g;
+ var NULL_RE = /\0/g;
+
+
+ module.exports = function normalize(state) {
+ var str;
+
+ // Normalize newlines
+ str = state.src.replace(NEWLINES_RE, '\n');
+
+ // Replace NULL characters
+ str = str.replace(NULL_RE, '\uFFFD');
+
+ state.src = str;
+ };
+
+ },{}],34:[function(require,module,exports){
+ // Simple typographic replacements
+ //
+ // (c) (C) → ©
+ // (tm) (TM) → ™
+ // (r) (R) → ®
+ // +- → ±
+ // (p) (P) -> §
+ // ... → … (also ?.... → ?.., !.... → !..)
+ // ???????? → ???, !!!!! → !!!, `,,` → `,`
+ // -- → –, --- → —
+ //
+ 'use strict';
+
+ // TODO:
+ // - fractionals 1/2, 1/4, 3/4 -> ½, ¼, ¾
+ // - miltiplication 2 x 4 -> 2 × 4
+
+ var RARE_RE = /\+-|\.\.|\?\?\?\?|!!!!|,,|--/;
+
+ // Workaround for phantomjs - need regex without /g flag,
+ // or root check will fail every second time
+ var SCOPED_ABBR_TEST_RE = /\((c|tm|r|p)\)/i;
+
+ var SCOPED_ABBR_RE = /\((c|tm|r|p)\)/ig;
+ var SCOPED_ABBR = {
+ c: '©',
+ r: '®',
+ p: '§',
+ tm: '™'
+ };
+
+ function replaceFn(match, name) {
+ return SCOPED_ABBR[name.toLowerCase()];
+ }
+
+ function replace_scoped(inlineTokens) {
+ var i, token, inside_autolink = 0;
+
+ for (i = inlineTokens.length - 1; i >= 0; i--) {
+ token = inlineTokens[i];
+
+ if (token.type === 'text' && !inside_autolink) {
+ token.content = token.content.replace(SCOPED_ABBR_RE, replaceFn);
+ }
+
+ if (token.type === 'link_open' && token.info === 'auto') {
+ inside_autolink--;
+ }
+
+ if (token.type === 'link_close' && token.info === 'auto') {
+ inside_autolink++;
+ }
+ }
+ }
+
+ function replace_rare(inlineTokens) {
+ var i, token, inside_autolink = 0;
+
+ for (i = inlineTokens.length - 1; i >= 0; i--) {
+ token = inlineTokens[i];
+
+ if (token.type === 'text' && !inside_autolink) {
+ if (RARE_RE.test(token.content)) {
+ token.content = token.content
+ .replace(/\+-/g, '±')
+ // .., ..., ....... -> …
+ // but ?..... & !..... -> ?.. & !..
+ .replace(/\.{2,}/g, '…').replace(/([?!])…/g, '$1..')
+ .replace(/([?!]){4,}/g, '$1$1$1').replace(/,{2,}/g, ',')
+ // em-dash
+ .replace(/(^|[^-])---([^-]|$)/mg, '$1\u2014$2')
+ // en-dash
+ .replace(/(^|\s)--(\s|$)/mg, '$1\u2013$2')
+ .replace(/(^|[^-\s])--([^-\s]|$)/mg, '$1\u2013$2');
+ }
+ }
+
+ if (token.type === 'link_open' && token.info === 'auto') {
+ inside_autolink--;
+ }
+
+ if (token.type === 'link_close' && token.info === 'auto') {
+ inside_autolink++;
+ }
+ }
+ }
+
+
+ module.exports = function replace(state) {
+ var blkIdx;
+
+ if (!state.md.options.typographer) { return; }
+
+ for (blkIdx = state.tokens.length - 1; blkIdx >= 0; blkIdx--) {
+
+ if (state.tokens[blkIdx].type !== 'inline') { continue; }
+
+ if (SCOPED_ABBR_TEST_RE.test(state.tokens[blkIdx].content)) {
+ replace_scoped(state.tokens[blkIdx].children);
+ }
+
+ if (RARE_RE.test(state.tokens[blkIdx].content)) {
+ replace_rare(state.tokens[blkIdx].children);
+ }
+
+ }
+ };
+
+ },{}],35:[function(require,module,exports){
+ // Convert straight quotation marks to typographic ones
+ //
+ 'use strict';
+
+
+ var isWhiteSpace = require('../common/utils').isWhiteSpace;
+ var isPunctChar = require('../common/utils').isPunctChar;
+ var isMdAsciiPunct = require('../common/utils').isMdAsciiPunct;
+
+ var QUOTE_TEST_RE = /['"]/;
+ var QUOTE_RE = /['"]/g;
+ var APOSTROPHE = '\u2019'; /* ’ */
+
+
+ function replaceAt(str, index, ch) {
+ return str.substr(0, index) + ch + str.substr(index + 1);
+ }
+
+ function process_inlines(tokens, state) {
+ var i, token, text, t, pos, max, thisLevel, item, lastChar, nextChar,
+ isLastPunctChar, isNextPunctChar, isLastWhiteSpace, isNextWhiteSpace,
+ canOpen, canClose, j, isSingle, stack, openQuote, closeQuote;
+
+ stack = [];
+
+ for (i = 0; i < tokens.length; i++) {
+ token = tokens[i];
+
+ thisLevel = tokens[i].level;
+
+ for (j = stack.length - 1; j >= 0; j--) {
+ if (stack[j].level <= thisLevel) { break; }
+ }
+ stack.length = j + 1;
+
+ if (token.type !== 'text') { continue; }
+
+ text = token.content;
+ pos = 0;
+ max = text.length;
+
+ /*eslint no-labels:0,block-scoped-var:0*/
+ OUTER:
+ while (pos < max) {
+ QUOTE_RE.lastIndex = pos;
+ t = QUOTE_RE.exec(text);
+ if (!t) { break; }
+
+ canOpen = canClose = true;
+ pos = t.index + 1;
+ isSingle = (t[0] === "'");
+
+ // Find previous character,
+ // default to space if it's the beginning of the line
+ //
+ lastChar = 0x20;
+
+ if (t.index - 1 >= 0) {
+ lastChar = text.charCodeAt(t.index - 1);
+ } else {
+ for (j = i - 1; j >= 0; j--) {
+ if (tokens[j].type === 'softbreak' || tokens[j].type === 'hardbreak') break; // lastChar defaults to 0x20
+ if (tokens[j].type !== 'text') continue;
+
+ lastChar = tokens[j].content.charCodeAt(tokens[j].content.length - 1);
+ break;
+ }
+ }
+
+ // Find next character,
+ // default to space if it's the end of the line
+ //
+ nextChar = 0x20;
+
+ if (pos < max) {
+ nextChar = text.charCodeAt(pos);
+ } else {
+ for (j = i + 1; j < tokens.length; j++) {
+ if (tokens[j].type === 'softbreak' || tokens[j].type === 'hardbreak') break; // nextChar defaults to 0x20
+ if (tokens[j].type !== 'text') continue;
+
+ nextChar = tokens[j].content.charCodeAt(0);
+ break;
+ }
+ }
+
+ isLastPunctChar = isMdAsciiPunct(lastChar) || isPunctChar(String.fromCharCode(lastChar));
+ isNextPunctChar = isMdAsciiPunct(nextChar) || isPunctChar(String.fromCharCode(nextChar));
+
+ isLastWhiteSpace = isWhiteSpace(lastChar);
+ isNextWhiteSpace = isWhiteSpace(nextChar);
+
+ if (isNextWhiteSpace) {
+ canOpen = false;
+ } else if (isNextPunctChar) {
+ if (!(isLastWhiteSpace || isLastPunctChar)) {
+ canOpen = false;
+ }
+ }
+
+ if (isLastWhiteSpace) {
+ canClose = false;
+ } else if (isLastPunctChar) {
+ if (!(isNextWhiteSpace || isNextPunctChar)) {
+ canClose = false;
+ }
+ }
+
+ if (nextChar === 0x22 /* " */ && t[0] === '"') {
+ if (lastChar >= 0x30 /* 0 */ && lastChar <= 0x39 /* 9 */) {
+ // special case: 1"" - count first quote as an inch
+ canClose = canOpen = false;
+ }
+ }
+
+ if (canOpen && canClose) {
+ // treat this as the middle of the word
+ canOpen = false;
+ canClose = isNextPunctChar;
+ }
+
+ if (!canOpen && !canClose) {
+ // middle of word
+ if (isSingle) {
+ token.content = replaceAt(token.content, t.index, APOSTROPHE);
+ }
+ continue;
+ }
+
+ if (canClose) {
+ // this could be a closing quote, rewind the stack to get a match
+ for (j = stack.length - 1; j >= 0; j--) {
+ item = stack[j];
+ if (stack[j].level < thisLevel) { break; }
+ if (item.single === isSingle && stack[j].level === thisLevel) {
+ item = stack[j];
+
+ if (isSingle) {
+ openQuote = state.md.options.quotes[2];
+ closeQuote = state.md.options.quotes[3];
+ } else {
+ openQuote = state.md.options.quotes[0];
+ closeQuote = state.md.options.quotes[1];
+ }
+
+ // replace token.content *before* tokens[item.token].content,
+ // because, if they are pointing at the same token, replaceAt
+ // could mess up indices when quote length != 1
+ token.content = replaceAt(token.content, t.index, closeQuote);
+ tokens[item.token].content = replaceAt(
+ tokens[item.token].content, item.pos, openQuote);
+
+ pos += closeQuote.length - 1;
+ if (item.token === i) { pos += openQuote.length - 1; }
+
+ text = token.content;
+ max = text.length;
+
+ stack.length = j;
+ continue OUTER;
+ }
+ }
+ }
+
+ if (canOpen) {
+ stack.push({
+ token: i,
+ pos: t.index,
+ single: isSingle,
+ level: thisLevel
+ });
+ } else if (canClose && isSingle) {
+ token.content = replaceAt(token.content, t.index, APOSTROPHE);
+ }
+ }
+ }
+ }
+
+
+ module.exports = function smartquotes(state) {
+ /*eslint max-depth:0*/
+ var blkIdx;
+
+ if (!state.md.options.typographer) { return; }
+
+ for (blkIdx = state.tokens.length - 1; blkIdx >= 0; blkIdx--) {
+
+ if (state.tokens[blkIdx].type !== 'inline' ||
+ !QUOTE_TEST_RE.test(state.tokens[blkIdx].content)) {
+ continue;
+ }
+
+ process_inlines(state.tokens[blkIdx].children, state);
+ }
+ };
+
+ },{"../common/utils":4}],36:[function(require,module,exports){
+ // Core state object
+ //
+ 'use strict';
+
+ var Token = require('../token');
+
+
+ function StateCore(src, md, env) {
+ this.src = src;
+ this.env = env;
+ this.tokens = [];
+ this.inlineMode = false;
+ this.md = md; // link to parser instance
+ }
+
+ // re-export Token class to use in core rules
+ StateCore.prototype.Token = Token;
+
+
+ module.exports = StateCore;
+
+ },{"../token":51}],37:[function(require,module,exports){
+ // Process autolinks ''
+
+ 'use strict';
+
+
+ /*eslint max-len:0*/
+ var EMAIL_RE = /^<([a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)>/;
+ var AUTOLINK_RE = /^<([a-zA-Z][a-zA-Z0-9+.\-]{1,31}):([^<>\x00-\x20]*)>/;
+
+
+ module.exports = function autolink(state, silent) {
+ var tail, linkMatch, emailMatch, url, fullUrl, token,
+ pos = state.pos;
+
+ if (state.src.charCodeAt(pos) !== 0x3C/* < */) { return false; }
+
+ tail = state.src.slice(pos);
+
+ if (tail.indexOf('>') < 0) { return false; }
+
+ if (AUTOLINK_RE.test(tail)) {
+ linkMatch = tail.match(AUTOLINK_RE);
+
+ url = linkMatch[0].slice(1, -1);
+ fullUrl = state.md.normalizeLink(url);
+ if (!state.md.validateLink(fullUrl)) { return false; }
+
+ if (!silent) {
+ token = state.push('link_open', 'a', 1);
+ token.attrs = [ [ 'href', fullUrl ] ];
+ token.markup = 'autolink';
+ token.info = 'auto';
+
+ token = state.push('text', '', 0);
+ token.content = state.md.normalizeLinkText(url);
+
+ token = state.push('link_close', 'a', -1);
+ token.markup = 'autolink';
+ token.info = 'auto';
+ }
+
+ state.pos += linkMatch[0].length;
+ return true;
+ }
+
+ if (EMAIL_RE.test(tail)) {
+ emailMatch = tail.match(EMAIL_RE);
+
+ url = emailMatch[0].slice(1, -1);
+ fullUrl = state.md.normalizeLink('mailto:' + url);
+ if (!state.md.validateLink(fullUrl)) { return false; }
+
+ if (!silent) {
+ token = state.push('link_open', 'a', 1);
+ token.attrs = [ [ 'href', fullUrl ] ];
+ token.markup = 'autolink';
+ token.info = 'auto';
+
+ token = state.push('text', '', 0);
+ token.content = state.md.normalizeLinkText(url);
+
+ token = state.push('link_close', 'a', -1);
+ token.markup = 'autolink';
+ token.info = 'auto';
+ }
+
+ state.pos += emailMatch[0].length;
+ return true;
+ }
+
+ return false;
+ };
+
+ },{}],38:[function(require,module,exports){
+ // Parse backticks
+
+ 'use strict';
+
+ module.exports = function backtick(state, silent) {
+ var start, max, marker, matchStart, matchEnd, token,
+ pos = state.pos,
+ ch = state.src.charCodeAt(pos);
+
+ if (ch !== 0x60/* ` */) { return false; }
+
+ start = pos;
+ pos++;
+ max = state.posMax;
+
+ while (pos < max && state.src.charCodeAt(pos) === 0x60/* ` */) { pos++; }
+
+ marker = state.src.slice(start, pos);
+
+ matchStart = matchEnd = pos;
+
+ while ((matchStart = state.src.indexOf('`', matchEnd)) !== -1) {
+ matchEnd = matchStart + 1;
+
+ while (matchEnd < max && state.src.charCodeAt(matchEnd) === 0x60/* ` */) { matchEnd++; }
+
+ if (matchEnd - matchStart === marker.length) {
+ if (!silent) {
+ token = state.push('code_inline', 'code', 0);
+ token.markup = marker;
+ token.content = state.src.slice(pos, matchStart)
+ .replace(/\n/g, ' ')
+ .replace(/^ (.+) $/, '$1');
+ }
+ state.pos = matchEnd;
+ return true;
+ }
+ }
+
+ if (!silent) { state.pending += marker; }
+ state.pos += marker.length;
+ return true;
+ };
+
+ },{}],39:[function(require,module,exports){
+ // For each opening emphasis-like marker find a matching closing one
+ //
+ 'use strict';
+
+
+ function processDelimiters(state, delimiters) {
+ var closerIdx, openerIdx, closer, opener, minOpenerIdx, newMinOpenerIdx,
+ isOddMatch, lastJump,
+ openersBottom = {},
+ max = delimiters.length;
+
+ for (closerIdx = 0; closerIdx < max; closerIdx++) {
+ closer = delimiters[closerIdx];
+
+ // Length is only used for emphasis-specific "rule of 3",
+ // if it's not defined (in strikethrough or 3rd party plugins),
+ // we can default it to 0 to disable those checks.
+ //
+ closer.length = closer.length || 0;
+
+ if (!closer.close) continue;
+
+ // Previously calculated lower bounds (previous fails)
+ // for each marker and each delimiter length modulo 3.
+ if (!openersBottom.hasOwnProperty(closer.marker)) {
+ openersBottom[closer.marker] = [ -1, -1, -1 ];
+ }
+
+ minOpenerIdx = openersBottom[closer.marker][closer.length % 3];
+ newMinOpenerIdx = -1;
+
+ openerIdx = closerIdx - closer.jump - 1;
+
+ for (; openerIdx > minOpenerIdx; openerIdx -= opener.jump + 1) {
+ opener = delimiters[openerIdx];
+
+ if (opener.marker !== closer.marker) continue;
+
+ if (newMinOpenerIdx === -1) newMinOpenerIdx = openerIdx;
+
+ if (opener.open &&
+ opener.end < 0 &&
+ opener.level === closer.level) {
+
+ isOddMatch = false;
+
+ // from spec:
+ //
+ // If one of the delimiters can both open and close emphasis, then the
+ // sum of the lengths of the delimiter runs containing the opening and
+ // closing delimiters must not be a multiple of 3 unless both lengths
+ // are multiples of 3.
+ //
+ if (opener.close || closer.open) {
+ if ((opener.length + closer.length) % 3 === 0) {
+ if (opener.length % 3 !== 0 || closer.length % 3 !== 0) {
+ isOddMatch = true;
+ }
+ }
+ }
+
+ if (!isOddMatch) {
+ // If previous delimiter cannot be an opener, we can safely skip
+ // the entire sequence in future checks. This is required to make
+ // sure algorithm has linear complexity (see *_*_*_*_*_... case).
+ //
+ lastJump = openerIdx > 0 && !delimiters[openerIdx - 1].open ?
+ delimiters[openerIdx - 1].jump + 1 :
+ 0;
+
+ closer.jump = closerIdx - openerIdx + lastJump;
+ closer.open = false;
+ opener.end = closerIdx;
+ opener.jump = lastJump;
+ opener.close = false;
+ newMinOpenerIdx = -1;
+ break;
+ }
+ }
+ }
+
+ if (newMinOpenerIdx !== -1) {
+ // If match for this delimiter run failed, we want to set lower bound for
+ // future lookups. This is required to make sure algorithm has linear
+ // complexity.
+ //
+ // See details here:
+ // https://github.com/commonmark/cmark/issues/178#issuecomment-270417442
+ //
+ openersBottom[closer.marker][(closer.length || 0) % 3] = newMinOpenerIdx;
+ }
+ }
+ }
+
+
+ module.exports = function link_pairs(state) {
+ var curr,
+ tokens_meta = state.tokens_meta,
+ max = state.tokens_meta.length;
+
+ processDelimiters(state, state.delimiters);
+
+ for (curr = 0; curr < max; curr++) {
+ if (tokens_meta[curr] && tokens_meta[curr].delimiters) {
+ processDelimiters(state, tokens_meta[curr].delimiters);
+ }
+ }
+ };
+
+ },{}],40:[function(require,module,exports){
+ // Process *this* and _that_
+ //
+ 'use strict';
+
+
+ // Insert each marker as a separate text token, and add it to delimiter list
+ //
+ module.exports.tokenize = function emphasis(state, silent) {
+ var i, scanned, token,
+ start = state.pos,
+ marker = state.src.charCodeAt(start);
+
+ if (silent) { return false; }
+
+ if (marker !== 0x5F /* _ */ && marker !== 0x2A /* * */) { return false; }
+
+ scanned = state.scanDelims(state.pos, marker === 0x2A);
+
+ for (i = 0; i < scanned.length; i++) {
+ token = state.push('text', '', 0);
+ token.content = String.fromCharCode(marker);
+
+ state.delimiters.push({
+ // Char code of the starting marker (number).
+ //
+ marker: marker,
+
+ // Total length of these series of delimiters.
+ //
+ length: scanned.length,
+
+ // An amount of characters before this one that's equivalent to
+ // current one. In plain English: if this delimiter does not open
+ // an emphasis, neither do previous `jump` characters.
+ //
+ // Used to skip sequences like "*****" in one step, for 1st asterisk
+ // value will be 0, for 2nd it's 1 and so on.
+ //
+ jump: i,
+
+ // A position of the token this delimiter corresponds to.
+ //
+ token: state.tokens.length - 1,
+
+ // If this delimiter is matched as a valid opener, `end` will be
+ // equal to its position, otherwise it's `-1`.
+ //
+ end: -1,
+
+ // Boolean flags that determine if this delimiter could open or close
+ // an emphasis.
+ //
+ open: scanned.can_open,
+ close: scanned.can_close
+ });
+ }
+
+ state.pos += scanned.length;
+
+ return true;
+ };
+
+
+ function postProcess(state, delimiters) {
+ var i,
+ startDelim,
+ endDelim,
+ token,
+ ch,
+ isStrong,
+ max = delimiters.length;
+
+ for (i = max - 1; i >= 0; i--) {
+ startDelim = delimiters[i];
+
+ if (startDelim.marker !== 0x5F/* _ */ && startDelim.marker !== 0x2A/* * */) {
+ continue;
+ }
+
+ // Process only opening markers
+ if (startDelim.end === -1) {
+ continue;
+ }
+
+ endDelim = delimiters[startDelim.end];
+
+ // If the previous delimiter has the same marker and is adjacent to this one,
+ // merge those into one strong delimiter.
+ //
+ // `whatever` -> `whatever`
+ //
+ isStrong = i > 0 &&
+ delimiters[i - 1].end === startDelim.end + 1 &&
+ delimiters[i - 1].token === startDelim.token - 1 &&
+ delimiters[startDelim.end + 1].token === endDelim.token + 1 &&
+ delimiters[i - 1].marker === startDelim.marker;
+
+ ch = String.fromCharCode(startDelim.marker);
+
+ token = state.tokens[startDelim.token];
+ token.type = isStrong ? 'strong_open' : 'em_open';
+ token.tag = isStrong ? 'strong' : 'em';
+ token.nesting = 1;
+ token.markup = isStrong ? ch + ch : ch;
+ token.content = '';
+
+ token = state.tokens[endDelim.token];
+ token.type = isStrong ? 'strong_close' : 'em_close';
+ token.tag = isStrong ? 'strong' : 'em';
+ token.nesting = -1;
+ token.markup = isStrong ? ch + ch : ch;
+ token.content = '';
+
+ if (isStrong) {
+ state.tokens[delimiters[i - 1].token].content = '';
+ state.tokens[delimiters[startDelim.end + 1].token].content = '';
+ i--;
+ }
+ }
+ }
+
+
+ // Walk through delimiter list and replace text tokens with tags
+ //
+ module.exports.postProcess = function emphasis(state) {
+ var curr,
+ tokens_meta = state.tokens_meta,
+ max = state.tokens_meta.length;
+
+ postProcess(state, state.delimiters);
+
+ for (curr = 0; curr < max; curr++) {
+ if (tokens_meta[curr] && tokens_meta[curr].delimiters) {
+ postProcess(state, tokens_meta[curr].delimiters);
+ }
+ }
+ };
+
+ },{}],41:[function(require,module,exports){
+ // Process html entity - {, ¯, ", ...
+
+ 'use strict';
+
+ var entities = require('../common/entities');
+ var has = require('../common/utils').has;
+ var isValidEntityCode = require('../common/utils').isValidEntityCode;
+ var fromCodePoint = require('../common/utils').fromCodePoint;
+
+
+ var DIGITAL_RE = /^((?:x[a-f0-9]{1,6}|[0-9]{1,7}));/i;
+ var NAMED_RE = /^&([a-z][a-z0-9]{1,31});/i;
+
+
+ module.exports = function entity(state, silent) {
+ var ch, code, match, pos = state.pos, max = state.posMax;
+
+ if (state.src.charCodeAt(pos) !== 0x26/* & */) { return false; }
+
+ if (pos + 1 < max) {
+ ch = state.src.charCodeAt(pos + 1);
+
+ if (ch === 0x23 /* # */) {
+ match = state.src.slice(pos).match(DIGITAL_RE);
+ if (match) {
+ if (!silent) {
+ code = match[1][0].toLowerCase() === 'x' ? parseInt(match[1].slice(1), 16) : parseInt(match[1], 10);
+ state.pending += isValidEntityCode(code) ? fromCodePoint(code) : fromCodePoint(0xFFFD);
+ }
+ state.pos += match[0].length;
+ return true;
+ }
+ } else {
+ match = state.src.slice(pos).match(NAMED_RE);
+ if (match) {
+ if (has(entities, match[1])) {
+ if (!silent) { state.pending += entities[match[1]]; }
+ state.pos += match[0].length;
+ return true;
+ }
+ }
+ }
+ }
+
+ if (!silent) { state.pending += '&'; }
+ state.pos++;
+ return true;
+ };
+
+ },{"../common/entities":1,"../common/utils":4}],42:[function(require,module,exports){
+ // Process escaped chars and hardbreaks
+
+ 'use strict';
+
+ var isSpace = require('../common/utils').isSpace;
+
+ var ESCAPED = [];
+
+ for (var i = 0; i < 256; i++) { ESCAPED.push(0); }
+
+ '\\!"#$%&\'()*+,./:;<=>?@[]^_`{|}~-'
+ .split('').forEach(function (ch) { ESCAPED[ch.charCodeAt(0)] = 1; });
+
+
+ module.exports = function escape(state, silent) {
+ var ch, pos = state.pos, max = state.posMax;
+
+ if (state.src.charCodeAt(pos) !== 0x5C/* \ */) { return false; }
+
+ pos++;
+
+ if (pos < max) {
+ ch = state.src.charCodeAt(pos);
+
+ if (ch < 256 && ESCAPED[ch] !== 0) {
+ if (!silent) { state.pending += state.src[pos]; }
+ state.pos += 2;
+ return true;
+ }
+
+ if (ch === 0x0A) {
+ if (!silent) {
+ state.push('hardbreak', 'br', 0);
+ }
+
+ pos++;
+ // skip leading whitespaces from next line
+ while (pos < max) {
+ ch = state.src.charCodeAt(pos);
+ if (!isSpace(ch)) { break; }
+ pos++;
+ }
+
+ state.pos = pos;
+ return true;
+ }
+ }
+
+ if (!silent) { state.pending += '\\'; }
+ state.pos++;
+ return true;
+ };
+
+ },{"../common/utils":4}],43:[function(require,module,exports){
+ // Process html tags
+
+ 'use strict';
+
+
+ var HTML_TAG_RE = require('../common/html_re').HTML_TAG_RE;
+
+
+ function isLetter(ch) {
+ /*eslint no-bitwise:0*/
+ var lc = ch | 0x20; // to lower case
+ return (lc >= 0x61/* a */) && (lc <= 0x7a/* z */);
+ }
+
+
+ module.exports = function html_inline(state, silent) {
+ var ch, match, max, token,
+ pos = state.pos;
+
+ if (!state.md.options.html) { return false; }
+
+ // Check start
+ max = state.posMax;
+ if (state.src.charCodeAt(pos) !== 0x3C/* < */ ||
+ pos + 2 >= max) {
+ return false;
+ }
+
+ // Quick fail on second char
+ ch = state.src.charCodeAt(pos + 1);
+ if (ch !== 0x21/* ! */ &&
+ ch !== 0x3F/* ? */ &&
+ ch !== 0x2F/* / */ &&
+ !isLetter(ch)) {
+ return false;
+ }
+
+ match = state.src.slice(pos).match(HTML_TAG_RE);
+ if (!match) { return false; }
+
+ if (!silent) {
+ token = state.push('html_inline', '', 0);
+ token.content = state.src.slice(pos, pos + match[0].length);
+ }
+ state.pos += match[0].length;
+ return true;
+ };
+
+ },{"../common/html_re":3}],44:[function(require,module,exports){
+ // Process 
+
+ 'use strict';
+
+ var normalizeReference = require('../common/utils').normalizeReference;
+ var isSpace = require('../common/utils').isSpace;
+
+
+ module.exports = function image(state, silent) {
+ var attrs,
+ code,
+ content,
+ label,
+ labelEnd,
+ labelStart,
+ pos,
+ ref,
+ res,
+ title,
+ token,
+ tokens,
+ start,
+ href = '',
+ oldPos = state.pos,
+ max = state.posMax;
+
+ if (state.src.charCodeAt(state.pos) !== 0x21/* ! */) { return false; }
+ if (state.src.charCodeAt(state.pos + 1) !== 0x5B/* [ */) { return false; }
+
+ labelStart = state.pos + 2;
+ labelEnd = state.md.helpers.parseLinkLabel(state, state.pos + 1, false);
+
+ // parser failed to find ']', so it's not a valid link
+ if (labelEnd < 0) { return false; }
+
+ pos = labelEnd + 1;
+ if (pos < max && state.src.charCodeAt(pos) === 0x28/* ( */) {
+ //
+ // Inline link
+ //
+
+ // [link]( "title" )
+ // ^^ skipping these spaces
+ pos++;
+ for (; pos < max; pos++) {
+ code = state.src.charCodeAt(pos);
+ if (!isSpace(code) && code !== 0x0A) { break; }
+ }
+ if (pos >= max) { return false; }
+
+ // [link]( "title" )
+ // ^^^^^^ parsing link destination
+ start = pos;
+ res = state.md.helpers.parseLinkDestination(state.src, pos, state.posMax);
+ if (res.ok) {
+ href = state.md.normalizeLink(res.str);
+ if (state.md.validateLink(href)) {
+ pos = res.pos;
+ } else {
+ href = '';
+ }
+ }
+
+ // [link]( "title" )
+ // ^^ skipping these spaces
+ start = pos;
+ for (; pos < max; pos++) {
+ code = state.src.charCodeAt(pos);
+ if (!isSpace(code) && code !== 0x0A) { break; }
+ }
+
+ // [link]( "title" )
+ // ^^^^^^^ parsing link title
+ res = state.md.helpers.parseLinkTitle(state.src, pos, state.posMax);
+ if (pos < max && start !== pos && res.ok) {
+ title = res.str;
+ pos = res.pos;
+
+ // [link]( "title" )
+ // ^^ skipping these spaces
+ for (; pos < max; pos++) {
+ code = state.src.charCodeAt(pos);
+ if (!isSpace(code) && code !== 0x0A) { break; }
+ }
+ } else {
+ title = '';
+ }
+
+ if (pos >= max || state.src.charCodeAt(pos) !== 0x29/* ) */) {
+ state.pos = oldPos;
+ return false;
+ }
+ pos++;
+ } else {
+ //
+ // Link reference
+ //
+ if (typeof state.env.references === 'undefined') { return false; }
+
+ if (pos < max && state.src.charCodeAt(pos) === 0x5B/* [ */) {
+ start = pos + 1;
+ pos = state.md.helpers.parseLinkLabel(state, pos);
+ if (pos >= 0) {
+ label = state.src.slice(start, pos++);
+ } else {
+ pos = labelEnd + 1;
+ }
+ } else {
+ pos = labelEnd + 1;
+ }
+
+ // covers label === '' and label === undefined
+ // (collapsed reference link and shortcut reference link respectively)
+ if (!label) { label = state.src.slice(labelStart, labelEnd); }
+
+ ref = state.env.references[normalizeReference(label)];
+ if (!ref) {
+ state.pos = oldPos;
+ return false;
+ }
+ href = ref.href;
+ title = ref.title;
+ }
+
+ //
+ // We found the end of the link, and know for a fact it's a valid link;
+ // so all that's left to do is to call tokenizer.
+ //
+ if (!silent) {
+ content = state.src.slice(labelStart, labelEnd);
+
+ state.md.inline.parse(
+ content,
+ state.md,
+ state.env,
+ tokens = []
+ );
+
+ token = state.push('image', 'img', 0);
+ token.attrs = attrs = [ [ 'src', href ], [ 'alt', '' ] ];
+ token.children = tokens;
+ token.content = content;
+
+ if (title) {
+ attrs.push([ 'title', title ]);
+ }
+ }
+
+ state.pos = pos;
+ state.posMax = max;
+ return true;
+ };
+
+ },{"../common/utils":4}],45:[function(require,module,exports){
+ // Process [link]( "stuff")
+
+ 'use strict';
+
+ var normalizeReference = require('../common/utils').normalizeReference;
+ var isSpace = require('../common/utils').isSpace;
+
+
+ module.exports = function link(state, silent) {
+ var attrs,
+ code,
+ label,
+ labelEnd,
+ labelStart,
+ pos,
+ res,
+ ref,
+ title,
+ token,
+ href = '',
+ oldPos = state.pos,
+ max = state.posMax,
+ start = state.pos,
+ parseReference = true;
+
+ if (state.src.charCodeAt(state.pos) !== 0x5B/* [ */) { return false; }
+
+ labelStart = state.pos + 1;
+ labelEnd = state.md.helpers.parseLinkLabel(state, state.pos, true);
+
+ // parser failed to find ']', so it's not a valid link
+ if (labelEnd < 0) { return false; }
+
+ pos = labelEnd + 1;
+ if (pos < max && state.src.charCodeAt(pos) === 0x28/* ( */) {
+ //
+ // Inline link
+ //
+
+ // might have found a valid shortcut link, disable reference parsing
+ parseReference = false;
+
+ // [link]( "title" )
+ // ^^ skipping these spaces
+ pos++;
+ for (; pos < max; pos++) {
+ code = state.src.charCodeAt(pos);
+ if (!isSpace(code) && code !== 0x0A) { break; }
+ }
+ if (pos >= max) { return false; }
+
+ // [link]( "title" )
+ // ^^^^^^ parsing link destination
+ start = pos;
+ res = state.md.helpers.parseLinkDestination(state.src, pos, state.posMax);
+ if (res.ok) {
+ href = state.md.normalizeLink(res.str);
+ if (state.md.validateLink(href)) {
+ pos = res.pos;
+ } else {
+ href = '';
+ }
+ }
+
+ // [link]( "title" )
+ // ^^ skipping these spaces
+ start = pos;
+ for (; pos < max; pos++) {
+ code = state.src.charCodeAt(pos);
+ if (!isSpace(code) && code !== 0x0A) { break; }
+ }
+
+ // [link]( "title" )
+ // ^^^^^^^ parsing link title
+ res = state.md.helpers.parseLinkTitle(state.src, pos, state.posMax);
+ if (pos < max && start !== pos && res.ok) {
+ title = res.str;
+ pos = res.pos;
+
+ // [link]( "title" )
+ // ^^ skipping these spaces
+ for (; pos < max; pos++) {
+ code = state.src.charCodeAt(pos);
+ if (!isSpace(code) && code !== 0x0A) { break; }
+ }
+ } else {
+ title = '';
+ }
+
+ if (pos >= max || state.src.charCodeAt(pos) !== 0x29/* ) */) {
+ // parsing a valid shortcut link failed, fallback to reference
+ parseReference = true;
+ }
+ pos++;
+ }
+
+ if (parseReference) {
+ //
+ // Link reference
+ //
+ if (typeof state.env.references === 'undefined') { return false; }
+
+ if (pos < max && state.src.charCodeAt(pos) === 0x5B/* [ */) {
+ start = pos + 1;
+ pos = state.md.helpers.parseLinkLabel(state, pos);
+ if (pos >= 0) {
+ label = state.src.slice(start, pos++);
+ } else {
+ pos = labelEnd + 1;
+ }
+ } else {
+ pos = labelEnd + 1;
+ }
+
+ // covers label === '' and label === undefined
+ // (collapsed reference link and shortcut reference link respectively)
+ if (!label) { label = state.src.slice(labelStart, labelEnd); }
+
+ ref = state.env.references[normalizeReference(label)];
+ if (!ref) {
+ state.pos = oldPos;
+ return false;
+ }
+ href = ref.href;
+ title = ref.title;
+ }
+
+ //
+ // We found the end of the link, and know for a fact it's a valid link;
+ // so all that's left to do is to call tokenizer.
+ //
+ if (!silent) {
+ state.pos = labelStart;
+ state.posMax = labelEnd;
+
+ token = state.push('link_open', 'a', 1);
+ token.attrs = attrs = [ [ 'href', href ] ];
+ if (title) {
+ attrs.push([ 'title', title ]);
+ }
+
+ state.md.inline.tokenize(state);
+
+ token = state.push('link_close', 'a', -1);
+ }
+
+ state.pos = pos;
+ state.posMax = max;
+ return true;
+ };
+
+ },{"../common/utils":4}],46:[function(require,module,exports){
+ // Proceess '\n'
+
+ 'use strict';
+
+ var isSpace = require('../common/utils').isSpace;
+
+
+ module.exports = function newline(state, silent) {
+ var pmax, max, pos = state.pos;
+
+ if (state.src.charCodeAt(pos) !== 0x0A/* \n */) { return false; }
+
+ pmax = state.pending.length - 1;
+ max = state.posMax;
+
+ // ' \n' -> hardbreak
+ // Lookup in pending chars is bad practice! Don't copy to other rules!
+ // Pending string is stored in concat mode, indexed lookups will cause
+ // convertion to flat mode.
+ if (!silent) {
+ if (pmax >= 0 && state.pending.charCodeAt(pmax) === 0x20) {
+ if (pmax >= 1 && state.pending.charCodeAt(pmax - 1) === 0x20) {
+ state.pending = state.pending.replace(/ +$/, '');
+ state.push('hardbreak', 'br', 0);
+ } else {
+ state.pending = state.pending.slice(0, -1);
+ state.push('softbreak', 'br', 0);
+ }
+
+ } else {
+ state.push('softbreak', 'br', 0);
+ }
+ }
+
+ pos++;
+
+ // skip heading spaces for next line
+ while (pos < max && isSpace(state.src.charCodeAt(pos))) { pos++; }
+
+ state.pos = pos;
+ return true;
+ };
+
+ },{"../common/utils":4}],47:[function(require,module,exports){
+ // Inline parser state
+
+ 'use strict';
+
+
+ var Token = require('../token');
+ var isWhiteSpace = require('../common/utils').isWhiteSpace;
+ var isPunctChar = require('../common/utils').isPunctChar;
+ var isMdAsciiPunct = require('../common/utils').isMdAsciiPunct;
+
+
+ function StateInline(src, md, env, outTokens) {
+ this.src = src;
+ this.env = env;
+ this.md = md;
+ this.tokens = outTokens;
+ this.tokens_meta = Array(outTokens.length);
+
+ this.pos = 0;
+ this.posMax = this.src.length;
+ this.level = 0;
+ this.pending = '';
+ this.pendingLevel = 0;
+
+ // Stores { start: end } pairs. Useful for backtrack
+ // optimization of pairs parse (emphasis, strikes).
+ this.cache = {};
+
+ // List of emphasis-like delimiters for current tag
+ this.delimiters = [];
+
+ // Stack of delimiter lists for upper level tags
+ this._prev_delimiters = [];
+ }
+
+
+ // Flush pending text
+ //
+ StateInline.prototype.pushPending = function () {
+ var token = new Token('text', '', 0);
+ token.content = this.pending;
+ token.level = this.pendingLevel;
+ this.tokens.push(token);
+ this.pending = '';
+ return token;
+ };
+
+
+ // Push new token to "stream".
+ // If pending text exists - flush it as text token
+ //
+ StateInline.prototype.push = function (type, tag, nesting) {
+ if (this.pending) {
+ this.pushPending();
+ }
+
+ var token = new Token(type, tag, nesting);
+ var token_meta = null;
+
+ if (nesting < 0) {
+ // closing tag
+ this.level--;
+ this.delimiters = this._prev_delimiters.pop();
+ }
+
+ token.level = this.level;
+
+ if (nesting > 0) {
+ // opening tag
+ this.level++;
+ this._prev_delimiters.push(this.delimiters);
+ this.delimiters = [];
+ token_meta = { delimiters: this.delimiters };
+ }
+
+ this.pendingLevel = this.level;
+ this.tokens.push(token);
+ this.tokens_meta.push(token_meta);
+ return token;
+ };
+
+
+ // Scan a sequence of emphasis-like markers, and determine whether
+ // it can start an emphasis sequence or end an emphasis sequence.
+ //
+ // - start - position to scan from (it should point at a valid marker);
+ // - canSplitWord - determine if these markers can be found inside a word
+ //
+ StateInline.prototype.scanDelims = function (start, canSplitWord) {
+ var pos = start, lastChar, nextChar, count, can_open, can_close,
+ isLastWhiteSpace, isLastPunctChar,
+ isNextWhiteSpace, isNextPunctChar,
+ left_flanking = true,
+ right_flanking = true,
+ max = this.posMax,
+ marker = this.src.charCodeAt(start);
+
+ // treat beginning of the line as a whitespace
+ lastChar = start > 0 ? this.src.charCodeAt(start - 1) : 0x20;
+
+ while (pos < max && this.src.charCodeAt(pos) === marker) { pos++; }
+
+ count = pos - start;
+
+ // treat end of the line as a whitespace
+ nextChar = pos < max ? this.src.charCodeAt(pos) : 0x20;
+
+ isLastPunctChar = isMdAsciiPunct(lastChar) || isPunctChar(String.fromCharCode(lastChar));
+ isNextPunctChar = isMdAsciiPunct(nextChar) || isPunctChar(String.fromCharCode(nextChar));
+
+ isLastWhiteSpace = isWhiteSpace(lastChar);
+ isNextWhiteSpace = isWhiteSpace(nextChar);
+
+ if (isNextWhiteSpace) {
+ left_flanking = false;
+ } else if (isNextPunctChar) {
+ if (!(isLastWhiteSpace || isLastPunctChar)) {
+ left_flanking = false;
+ }
+ }
+
+ if (isLastWhiteSpace) {
+ right_flanking = false;
+ } else if (isLastPunctChar) {
+ if (!(isNextWhiteSpace || isNextPunctChar)) {
+ right_flanking = false;
+ }
+ }
+
+ if (!canSplitWord) {
+ can_open = left_flanking && (!right_flanking || isLastPunctChar);
+ can_close = right_flanking && (!left_flanking || isNextPunctChar);
+ } else {
+ can_open = left_flanking;
+ can_close = right_flanking;
+ }
+
+ return {
+ can_open: can_open,
+ can_close: can_close,
+ length: count
+ };
+ };
+
+
+ // re-export Token class to use in block rules
+ StateInline.prototype.Token = Token;
+
+
+ module.exports = StateInline;
+
+ },{"../common/utils":4,"../token":51}],48:[function(require,module,exports){
+ // ~~strike through~~
+ //
+ 'use strict';
+
+
+ // Insert each marker as a separate text token, and add it to delimiter list
+ //
+ module.exports.tokenize = function strikethrough(state, silent) {
+ var i, scanned, token, len, ch,
+ start = state.pos,
+ marker = state.src.charCodeAt(start);
+
+ if (silent) { return false; }
+
+ if (marker !== 0x7E/* ~ */) { return false; }
+
+ scanned = state.scanDelims(state.pos, true);
+ len = scanned.length;
+ ch = String.fromCharCode(marker);
+
+ if (len < 2) { return false; }
+
+ if (len % 2) {
+ token = state.push('text', '', 0);
+ token.content = ch;
+ len--;
+ }
+
+ for (i = 0; i < len; i += 2) {
+ token = state.push('text', '', 0);
+ token.content = ch + ch;
+
+ state.delimiters.push({
+ marker: marker,
+ length: 0, // disable "rule of 3" length checks meant for emphasis
+ jump: i,
+ token: state.tokens.length - 1,
+ end: -1,
+ open: scanned.can_open,
+ close: scanned.can_close
+ });
+ }
+
+ state.pos += scanned.length;
+
+ return true;
+ };
+
+
+ function postProcess(state, delimiters) {
+ var i, j,
+ startDelim,
+ endDelim,
+ token,
+ loneMarkers = [],
+ max = delimiters.length;
+
+ for (i = 0; i < max; i++) {
+ startDelim = delimiters[i];
+
+ if (startDelim.marker !== 0x7E/* ~ */) {
+ continue;
+ }
+
+ if (startDelim.end === -1) {
+ continue;
+ }
+
+ endDelim = delimiters[startDelim.end];
+
+ token = state.tokens[startDelim.token];
+ token.type = 's_open';
+ token.tag = 's';
+ token.nesting = 1;
+ token.markup = '~~';
+ token.content = '';
+
+ token = state.tokens[endDelim.token];
+ token.type = 's_close';
+ token.tag = 's';
+ token.nesting = -1;
+ token.markup = '~~';
+ token.content = '';
+
+ if (state.tokens[endDelim.token - 1].type === 'text' &&
+ state.tokens[endDelim.token - 1].content === '~') {
+
+ loneMarkers.push(endDelim.token - 1);
+ }
+ }
+
+ // If a marker sequence has an odd number of characters, it's splitted
+ // like this: `~~~~~` -> `~` + `~~` + `~~`, leaving one marker at the
+ // start of the sequence.
+ //
+ // So, we have to move all those markers after subsequent s_close tags.
+ //
+ while (loneMarkers.length) {
+ i = loneMarkers.pop();
+ j = i + 1;
+
+ while (j < state.tokens.length && state.tokens[j].type === 's_close') {
+ j++;
+ }
+
+ j--;
+
+ if (i !== j) {
+ token = state.tokens[j];
+ state.tokens[j] = state.tokens[i];
+ state.tokens[i] = token;
+ }
+ }
+ }
+
+
+ // Walk through delimiter list and replace text tokens with tags
+ //
+ module.exports.postProcess = function strikethrough(state) {
+ var curr,
+ tokens_meta = state.tokens_meta,
+ max = state.tokens_meta.length;
+
+ postProcess(state, state.delimiters);
+
+ for (curr = 0; curr < max; curr++) {
+ if (tokens_meta[curr] && tokens_meta[curr].delimiters) {
+ postProcess(state, tokens_meta[curr].delimiters);
+ }
+ }
+ };
+
+ },{}],49:[function(require,module,exports){
+ // Skip text characters for text token, place those to pending buffer
+ // and increment current pos
+
+ 'use strict';
+
+
+ // Rule to skip pure text
+ // '{}$%@~+=:' reserved for extentions
+
+ // !, ", #, $, %, &, ', (, ), *, +, ,, -, ., /, :, ;, <, =, >, ?, @, [, \, ], ^, _, `, {, |, }, or ~
+
+ // !!!! Don't confuse with "Markdown ASCII Punctuation" chars
+ // http://spec.commonmark.org/0.15/#ascii-punctuation-character
+ function isTerminatorChar(ch) {
+ switch (ch) {
+ case 0x0A/* \n */:
+ case 0x21/* ! */:
+ case 0x23/* # */:
+ case 0x24/* $ */:
+ case 0x25/* % */:
+ case 0x26/* & */:
+ case 0x2A/* * */:
+ case 0x2B/* + */:
+ case 0x2D/* - */:
+ case 0x3A/* : */:
+ case 0x3C/* < */:
+ case 0x3D/* = */:
+ case 0x3E/* > */:
+ case 0x40/* @ */:
+ case 0x5B/* [ */:
+ case 0x5C/* \ */:
+ case 0x5D/* ] */:
+ case 0x5E/* ^ */:
+ case 0x5F/* _ */:
+ case 0x60/* ` */:
+ case 0x7B/* { */:
+ case 0x7D/* } */:
+ case 0x7E/* ~ */:
+ return true;
+ default:
+ return false;
+ }
+ }
+
+ module.exports = function text(state, silent) {
+ var pos = state.pos;
+
+ while (pos < state.posMax && !isTerminatorChar(state.src.charCodeAt(pos))) {
+ pos++;
+ }
+
+ if (pos === state.pos) { return false; }
+
+ if (!silent) { state.pending += state.src.slice(state.pos, pos); }
+
+ state.pos = pos;
+
+ return true;
+ };
+
+ // Alternative implementation, for memory.
+ //
+ // It costs 10% of performance, but allows extend terminators list, if place it
+ // to `ParcerInline` property. Probably, will switch to it sometime, such
+ // flexibility required.
+
+ /*
+ var TERMINATOR_RE = /[\n!#$%&*+\-:<=>@[\\\]^_`{}~]/;
+
+ module.exports = function text(state, silent) {
+ var pos = state.pos,
+ idx = state.src.slice(pos).search(TERMINATOR_RE);
+
+ // first char is terminator -> empty text
+ if (idx === 0) { return false; }
+
+ // no terminator -> text till end of string
+ if (idx < 0) {
+ if (!silent) { state.pending += state.src.slice(pos); }
+ state.pos = state.src.length;
+ return true;
+ }
+
+ if (!silent) { state.pending += state.src.slice(pos, pos + idx); }
+
+ state.pos += idx;
+
+ return true;
+ };*/
+
+ },{}],50:[function(require,module,exports){
+ // Clean up tokens after emphasis and strikethrough postprocessing:
+ // merge adjacent text nodes into one and re-calculate all token levels
+ //
+ // This is necessary because initially emphasis delimiter markers (*, _, ~)
+ // are treated as their own separate text tokens. Then emphasis rule either
+ // leaves them as text (needed to merge with adjacent text) or turns them
+ // into opening/closing tags (which messes up levels inside).
+ //
+ 'use strict';
+
+
+ module.exports = function text_collapse(state) {
+ var curr, last,
+ level = 0,
+ tokens = state.tokens,
+ max = state.tokens.length;
+
+ for (curr = last = 0; curr < max; curr++) {
+ // re-calculate levels after emphasis/strikethrough turns some text nodes
+ // into opening/closing tags
+ if (tokens[curr].nesting < 0) level--; // closing tag
+ tokens[curr].level = level;
+ if (tokens[curr].nesting > 0) level++; // opening tag
+
+ if (tokens[curr].type === 'text' &&
+ curr + 1 < max &&
+ tokens[curr + 1].type === 'text') {
+
+ // collapse two adjacent text nodes
+ tokens[curr + 1].content = tokens[curr].content + tokens[curr + 1].content;
+ } else {
+ if (curr !== last) { tokens[last] = tokens[curr]; }
+
+ last++;
+ }
+ }
+
+ if (curr !== last) {
+ tokens.length = last;
+ }
+ };
+
+ },{}],51:[function(require,module,exports){
+ // Token class
+
+ 'use strict';
+
+
+ /**
+ * class Token
+ **/
+
+ /**
+ * new Token(type, tag, nesting)
+ *
+ * Create new token and fill passed properties.
+ **/
+ function Token(type, tag, nesting) {
+ /**
+ * Token#type -> String
+ *
+ * Type of the token (string, e.g. "paragraph_open")
+ **/
+ this.type = type;
+
+ /**
+ * Token#tag -> String
+ *
+ * html tag name, e.g. "p"
+ **/
+ this.tag = tag;
+
+ /**
+ * Token#attrs -> Array
+ *
+ * Html attributes. Format: `[ [ name1, value1 ], [ name2, value2 ] ]`
+ **/
+ this.attrs = null;
+
+ /**
+ * Token#map -> Array
+ *
+ * Source map info. Format: `[ line_begin, line_end ]`
+ **/
+ this.map = null;
+
+ /**
+ * Token#nesting -> Number
+ *
+ * Level change (number in {-1, 0, 1} set), where:
+ *
+ * - `1` means the tag is opening
+ * - `0` means the tag is self-closing
+ * - `-1` means the tag is closing
+ **/
+ this.nesting = nesting;
+
+ /**
+ * Token#level -> Number
+ *
+ * nesting level, the same as `state.level`
+ **/
+ this.level = 0;
+
+ /**
+ * Token#children -> Array
+ *
+ * An array of child nodes (inline and img tokens)
+ **/
+ this.children = null;
+
+ /**
+ * Token#content -> String
+ *
+ * In a case of self-closing tag (code, html, fence, etc.),
+ * it has contents of this tag.
+ **/
+ this.content = '';
+
+ /**
+ * Token#markup -> String
+ *
+ * '*' or '_' for emphasis, fence string for fence, etc.
+ **/
+ this.markup = '';
+
+ /**
+ * Token#info -> String
+ *
+ * fence infostring
+ **/
+ this.info = '';
+
+ /**
+ * Token#meta -> Object
+ *
+ * A place for plugins to store an arbitrary data
+ **/
+ this.meta = null;
+
+ /**
+ * Token#block -> Boolean
+ *
+ * True for block-level tokens, false for inline tokens.
+ * Used in renderer to calculate line breaks
+ **/
+ this.block = false;
+
+ /**
+ * Token#hidden -> Boolean
+ *
+ * If it's true, ignore this element when rendering. Used for tight lists
+ * to hide paragraphs.
+ **/
+ this.hidden = false;
+ }
+
+
+ /**
+ * Token.attrIndex(name) -> Number
+ *
+ * Search attribute index by name.
+ **/
+ Token.prototype.attrIndex = function attrIndex(name) {
+ var attrs, i, len;
+
+ if (!this.attrs) { return -1; }
+
+ attrs = this.attrs;
+
+ for (i = 0, len = attrs.length; i < len; i++) {
+ if (attrs[i][0] === name) { return i; }
+ }
+ return -1;
+ };
+
+
+ /**
+ * Token.attrPush(attrData)
+ *
+ * Add `[ name, value ]` attribute to list. Init attrs if necessary
+ **/
+ Token.prototype.attrPush = function attrPush(attrData) {
+ if (this.attrs) {
+ this.attrs.push(attrData);
+ } else {
+ this.attrs = [ attrData ];
+ }
+ };
+
+
+ /**
+ * Token.attrSet(name, value)
+ *
+ * Set `name` attribute to `value`. Override old value if exists.
+ **/
+ Token.prototype.attrSet = function attrSet(name, value) {
+ var idx = this.attrIndex(name),
+ attrData = [ name, value ];
+
+ if (idx < 0) {
+ this.attrPush(attrData);
+ } else {
+ this.attrs[idx] = attrData;
+ }
+ };
+
+
+ /**
+ * Token.attrGet(name)
+ *
+ * Get the value of attribute `name`, or null if it does not exist.
+ **/
+ Token.prototype.attrGet = function attrGet(name) {
+ var idx = this.attrIndex(name), value = null;
+ if (idx >= 0) {
+ value = this.attrs[idx][1];
+ }
+ return value;
+ };
+
+
+ /**
+ * Token.attrJoin(name, value)
+ *
+ * Join value to existing attribute via space. Or create new attribute if not
+ * exists. Useful to operate with token classes.
+ **/
+ Token.prototype.attrJoin = function attrJoin(name, value) {
+ var idx = this.attrIndex(name);
+
+ if (idx < 0) {
+ this.attrPush([ name, value ]);
+ } else {
+ this.attrs[idx][1] = this.attrs[idx][1] + ' ' + value;
+ }
+ };
+
+
+ module.exports = Token;
+
+ },{}],52:[function(require,module,exports){
+ module.exports={ "Aacute": "\u00C1", "aacute": "\u00E1", "Abreve": "\u0102", "abreve": "\u0103", "ac": "\u223E", "acd": "\u223F", "acE": "\u223E\u0333", "Acirc": "\u00C2", "acirc": "\u00E2", "acute": "\u00B4", "Acy": "\u0410", "acy": "\u0430", "AElig": "\u00C6", "aelig": "\u00E6", "af": "\u2061", "Afr": "\uD835\uDD04", "afr": "\uD835\uDD1E", "Agrave": "\u00C0", "agrave": "\u00E0", "alefsym": "\u2135", "aleph": "\u2135", "Alpha": "\u0391", "alpha": "\u03B1", "Amacr": "\u0100", "amacr": "\u0101", "amalg": "\u2A3F", "amp": "&", "AMP": "&", "andand": "\u2A55", "And": "\u2A53", "and": "\u2227", "andd": "\u2A5C", "andslope": "\u2A58", "andv": "\u2A5A", "ang": "\u2220", "ange": "\u29A4", "angle": "\u2220", "angmsdaa": "\u29A8", "angmsdab": "\u29A9", "angmsdac": "\u29AA", "angmsdad": "\u29AB", "angmsdae": "\u29AC", "angmsdaf": "\u29AD", "angmsdag": "\u29AE", "angmsdah": "\u29AF", "angmsd": "\u2221", "angrt": "\u221F", "angrtvb": "\u22BE", "angrtvbd": "\u299D", "angsph": "\u2222", "angst": "\u00C5", "angzarr": "\u237C", "Aogon": "\u0104", "aogon": "\u0105", "Aopf": "\uD835\uDD38", "aopf": "\uD835\uDD52", "apacir": "\u2A6F", "ap": "\u2248", "apE": "\u2A70", "ape": "\u224A", "apid": "\u224B", "apos": "'", "ApplyFunction": "\u2061", "approx": "\u2248", "approxeq": "\u224A", "Aring": "\u00C5", "aring": "\u00E5", "Ascr": "\uD835\uDC9C", "ascr": "\uD835\uDCB6", "Assign": "\u2254", "ast": "*", "asymp": "\u2248", "asympeq": "\u224D", "Atilde": "\u00C3", "atilde": "\u00E3", "Auml": "\u00C4", "auml": "\u00E4", "awconint": "\u2233", "awint": "\u2A11", "backcong": "\u224C", "backepsilon": "\u03F6", "backprime": "\u2035", "backsim": "\u223D", "backsimeq": "\u22CD", "Backslash": "\u2216", "Barv": "\u2AE7", "barvee": "\u22BD", "barwed": "\u2305", "Barwed": "\u2306", "barwedge": "\u2305", "bbrk": "\u23B5", "bbrktbrk": "\u23B6", "bcong": "\u224C", "Bcy": "\u0411", "bcy": "\u0431", "bdquo": "\u201E", "becaus": "\u2235", "because": "\u2235", "Because": "\u2235", "bemptyv": "\u29B0", "bepsi": "\u03F6", "bernou": "\u212C", "Bernoullis": "\u212C", "Beta": "\u0392", "beta": "\u03B2", "beth": "\u2136", "between": "\u226C", "Bfr": "\uD835\uDD05", "bfr": "\uD835\uDD1F", "bigcap": "\u22C2", "bigcirc": "\u25EF", "bigcup": "\u22C3", "bigodot": "\u2A00", "bigoplus": "\u2A01", "bigotimes": "\u2A02", "bigsqcup": "\u2A06", "bigstar": "\u2605", "bigtriangledown": "\u25BD", "bigtriangleup": "\u25B3", "biguplus": "\u2A04", "bigvee": "\u22C1", "bigwedge": "\u22C0", "bkarow": "\u290D", "blacklozenge": "\u29EB", "blacksquare": "\u25AA", "blacktriangle": "\u25B4", "blacktriangledown": "\u25BE", "blacktriangleleft": "\u25C2", "blacktriangleright": "\u25B8", "blank": "\u2423", "blk12": "\u2592", "blk14": "\u2591", "blk34": "\u2593", "block": "\u2588", "bne": "=\u20E5", "bnequiv": "\u2261\u20E5", "bNot": "\u2AED", "bnot": "\u2310", "Bopf": "\uD835\uDD39", "bopf": "\uD835\uDD53", "bot": "\u22A5", "bottom": "\u22A5", "bowtie": "\u22C8", "boxbox": "\u29C9", "boxdl": "\u2510", "boxdL": "\u2555", "boxDl": "\u2556", "boxDL": "\u2557", "boxdr": "\u250C", "boxdR": "\u2552", "boxDr": "\u2553", "boxDR": "\u2554", "boxh": "\u2500", "boxH": "\u2550", "boxhd": "\u252C", "boxHd": "\u2564", "boxhD": "\u2565", "boxHD": "\u2566", "boxhu": "\u2534", "boxHu": "\u2567", "boxhU": "\u2568", "boxHU": "\u2569", "boxminus": "\u229F", "boxplus": "\u229E", "boxtimes": "\u22A0", "boxul": "\u2518", "boxuL": "\u255B", "boxUl": "\u255C", "boxUL": "\u255D", "boxur": "\u2514", "boxuR": "\u2558", "boxUr": "\u2559", "boxUR": "\u255A", "boxv": "\u2502", "boxV": "\u2551", "boxvh": "\u253C", "boxvH": "\u256A", "boxVh": "\u256B", "boxVH": "\u256C", "boxvl": "\u2524", "boxvL": "\u2561", "boxVl": "\u2562", "boxVL": "\u2563", "boxvr": "\u251C", "boxvR": "\u255E", "boxVr": "\u255F", "boxVR": "\u2560", "bprime": "\u2035", "breve": "\u02D8", "Breve": "\u02D8", "brvbar": "\u00A6", "bscr": "\uD835\uDCB7", "Bscr": "\u212C", "bsemi": "\u204F", "bsim": "\u223D", "bsime": "\u22CD", "bsolb": "\u29C5", "bsol": "\\", "bsolhsub": "\u27C8", "bull": "\u2022", "bullet": "\u2022", "bump": "\u224E", "bumpE": "\u2AAE", "bumpe": "\u224F", "Bumpeq": "\u224E", "bumpeq": "\u224F", "Cacute": "\u0106", "cacute": "\u0107", "capand": "\u2A44", "capbrcup": "\u2A49", "capcap": "\u2A4B", "cap": "\u2229", "Cap": "\u22D2", "capcup": "\u2A47", "capdot": "\u2A40", "CapitalDifferentialD": "\u2145", "caps": "\u2229\uFE00", "caret": "\u2041", "caron": "\u02C7", "Cayleys": "\u212D", "ccaps": "\u2A4D", "Ccaron": "\u010C", "ccaron": "\u010D", "Ccedil": "\u00C7", "ccedil": "\u00E7", "Ccirc": "\u0108", "ccirc": "\u0109", "Cconint": "\u2230", "ccups": "\u2A4C", "ccupssm": "\u2A50", "Cdot": "\u010A", "cdot": "\u010B", "cedil": "\u00B8", "Cedilla": "\u00B8", "cemptyv": "\u29B2", "cent": "\u00A2", "centerdot": "\u00B7", "CenterDot": "\u00B7", "cfr": "\uD835\uDD20", "Cfr": "\u212D", "CHcy": "\u0427", "chcy": "\u0447", "check": "\u2713", "checkmark": "\u2713", "Chi": "\u03A7", "chi": "\u03C7", "circ": "\u02C6", "circeq": "\u2257", "circlearrowleft": "\u21BA", "circlearrowright": "\u21BB", "circledast": "\u229B", "circledcirc": "\u229A", "circleddash": "\u229D", "CircleDot": "\u2299", "circledR": "\u00AE", "circledS": "\u24C8", "CircleMinus": "\u2296", "CirclePlus": "\u2295", "CircleTimes": "\u2297", "cir": "\u25CB", "cirE": "\u29C3", "cire": "\u2257", "cirfnint": "\u2A10", "cirmid": "\u2AEF", "cirscir": "\u29C2", "ClockwiseContourIntegral": "\u2232", "CloseCurlyDoubleQuote": "\u201D", "CloseCurlyQuote": "\u2019", "clubs": "\u2663", "clubsuit": "\u2663", "colon": ":", "Colon": "\u2237", "Colone": "\u2A74", "colone": "\u2254", "coloneq": "\u2254", "comma": ",", "commat": "@", "comp": "\u2201", "compfn": "\u2218", "complement": "\u2201", "complexes": "\u2102", "cong": "\u2245", "congdot": "\u2A6D", "Congruent": "\u2261", "conint": "\u222E", "Conint": "\u222F", "ContourIntegral": "\u222E", "copf": "\uD835\uDD54", "Copf": "\u2102", "coprod": "\u2210", "Coproduct": "\u2210", "copy": "\u00A9", "COPY": "\u00A9", "copysr": "\u2117", "CounterClockwiseContourIntegral": "\u2233", "crarr": "\u21B5", "cross": "\u2717", "Cross": "\u2A2F", "Cscr": "\uD835\uDC9E", "cscr": "\uD835\uDCB8", "csub": "\u2ACF", "csube": "\u2AD1", "csup": "\u2AD0", "csupe": "\u2AD2", "ctdot": "\u22EF", "cudarrl": "\u2938", "cudarrr": "\u2935", "cuepr": "\u22DE", "cuesc": "\u22DF", "cularr": "\u21B6", "cularrp": "\u293D", "cupbrcap": "\u2A48", "cupcap": "\u2A46", "CupCap": "\u224D", "cup": "\u222A", "Cup": "\u22D3", "cupcup": "\u2A4A", "cupdot": "\u228D", "cupor": "\u2A45", "cups": "\u222A\uFE00", "curarr": "\u21B7", "curarrm": "\u293C", "curlyeqprec": "\u22DE", "curlyeqsucc": "\u22DF", "curlyvee": "\u22CE", "curlywedge": "\u22CF", "curren": "\u00A4", "curvearrowleft": "\u21B6", "curvearrowright": "\u21B7", "cuvee": "\u22CE", "cuwed": "\u22CF", "cwconint": "\u2232", "cwint": "\u2231", "cylcty": "\u232D", "dagger": "\u2020", "Dagger": "\u2021", "daleth": "\u2138", "darr": "\u2193", "Darr": "\u21A1", "dArr": "\u21D3", "dash": "\u2010", "Dashv": "\u2AE4", "dashv": "\u22A3", "dbkarow": "\u290F", "dblac": "\u02DD", "Dcaron": "\u010E", "dcaron": "\u010F", "Dcy": "\u0414", "dcy": "\u0434", "ddagger": "\u2021", "ddarr": "\u21CA", "DD": "\u2145", "dd": "\u2146", "DDotrahd": "\u2911", "ddotseq": "\u2A77", "deg": "\u00B0", "Del": "\u2207", "Delta": "\u0394", "delta": "\u03B4", "demptyv": "\u29B1", "dfisht": "\u297F", "Dfr": "\uD835\uDD07", "dfr": "\uD835\uDD21", "dHar": "\u2965", "dharl": "\u21C3", "dharr": "\u21C2", "DiacriticalAcute": "\u00B4", "DiacriticalDot": "\u02D9", "DiacriticalDoubleAcute": "\u02DD", "DiacriticalGrave": "`", "DiacriticalTilde": "\u02DC", "diam": "\u22C4", "diamond": "\u22C4", "Diamond": "\u22C4", "diamondsuit": "\u2666", "diams": "\u2666", "die": "\u00A8", "DifferentialD": "\u2146", "digamma": "\u03DD", "disin": "\u22F2", "div": "\u00F7", "divide": "\u00F7", "divideontimes": "\u22C7", "divonx": "\u22C7", "DJcy": "\u0402", "djcy": "\u0452", "dlcorn": "\u231E", "dlcrop": "\u230D", "dollar": "$", "Dopf": "\uD835\uDD3B", "dopf": "\uD835\uDD55", "Dot": "\u00A8", "dot": "\u02D9", "DotDot": "\u20DC", "doteq": "\u2250", "doteqdot": "\u2251", "DotEqual": "\u2250", "dotminus": "\u2238", "dotplus": "\u2214", "dotsquare": "\u22A1", "doublebarwedge": "\u2306", "DoubleContourIntegral": "\u222F", "DoubleDot": "\u00A8", "DoubleDownArrow": "\u21D3", "DoubleLeftArrow": "\u21D0", "DoubleLeftRightArrow": "\u21D4", "DoubleLeftTee": "\u2AE4", "DoubleLongLeftArrow": "\u27F8", "DoubleLongLeftRightArrow": "\u27FA", "DoubleLongRightArrow": "\u27F9", "DoubleRightArrow": "\u21D2", "DoubleRightTee": "\u22A8", "DoubleUpArrow": "\u21D1", "DoubleUpDownArrow": "\u21D5", "DoubleVerticalBar": "\u2225", "DownArrowBar": "\u2913", "downarrow": "\u2193", "DownArrow": "\u2193", "Downarrow": "\u21D3", "DownArrowUpArrow": "\u21F5", "DownBreve": "\u0311", "downdownarrows": "\u21CA", "downharpoonleft": "\u21C3", "downharpoonright": "\u21C2", "DownLeftRightVector": "\u2950", "DownLeftTeeVector": "\u295E", "DownLeftVectorBar": "\u2956", "DownLeftVector": "\u21BD", "DownRightTeeVector": "\u295F", "DownRightVectorBar": "\u2957", "DownRightVector": "\u21C1", "DownTeeArrow": "\u21A7", "DownTee": "\u22A4", "drbkarow": "\u2910", "drcorn": "\u231F", "drcrop": "\u230C", "Dscr": "\uD835\uDC9F", "dscr": "\uD835\uDCB9", "DScy": "\u0405", "dscy": "\u0455", "dsol": "\u29F6", "Dstrok": "\u0110", "dstrok": "\u0111", "dtdot": "\u22F1", "dtri": "\u25BF", "dtrif": "\u25BE", "duarr": "\u21F5", "duhar": "\u296F", "dwangle": "\u29A6", "DZcy": "\u040F", "dzcy": "\u045F", "dzigrarr": "\u27FF", "Eacute": "\u00C9", "eacute": "\u00E9", "easter": "\u2A6E", "Ecaron": "\u011A", "ecaron": "\u011B", "Ecirc": "\u00CA", "ecirc": "\u00EA", "ecir": "\u2256", "ecolon": "\u2255", "Ecy": "\u042D", "ecy": "\u044D", "eDDot": "\u2A77", "Edot": "\u0116", "edot": "\u0117", "eDot": "\u2251", "ee": "\u2147", "efDot": "\u2252", "Efr": "\uD835\uDD08", "efr": "\uD835\uDD22", "eg": "\u2A9A", "Egrave": "\u00C8", "egrave": "\u00E8", "egs": "\u2A96", "egsdot": "\u2A98", "el": "\u2A99", "Element": "\u2208", "elinters": "\u23E7", "ell": "\u2113", "els": "\u2A95", "elsdot": "\u2A97", "Emacr": "\u0112", "emacr": "\u0113", "empty": "\u2205", "emptyset": "\u2205", "EmptySmallSquare": "\u25FB", "emptyv": "\u2205", "EmptyVerySmallSquare": "\u25AB", "emsp13": "\u2004", "emsp14": "\u2005", "emsp": "\u2003", "ENG": "\u014A", "eng": "\u014B", "ensp": "\u2002", "Eogon": "\u0118", "eogon": "\u0119", "Eopf": "\uD835\uDD3C", "eopf": "\uD835\uDD56", "epar": "\u22D5", "eparsl": "\u29E3", "eplus": "\u2A71", "epsi": "\u03B5", "Epsilon": "\u0395", "epsilon": "\u03B5", "epsiv": "\u03F5", "eqcirc": "\u2256", "eqcolon": "\u2255", "eqsim": "\u2242", "eqslantgtr": "\u2A96", "eqslantless": "\u2A95", "Equal": "\u2A75", "equals": "=", "EqualTilde": "\u2242", "equest": "\u225F", "Equilibrium": "\u21CC", "equiv": "\u2261", "equivDD": "\u2A78", "eqvparsl": "\u29E5", "erarr": "\u2971", "erDot": "\u2253", "escr": "\u212F", "Escr": "\u2130", "esdot": "\u2250", "Esim": "\u2A73", "esim": "\u2242", "Eta": "\u0397", "eta": "\u03B7", "ETH": "\u00D0", "eth": "\u00F0", "Euml": "\u00CB", "euml": "\u00EB", "euro": "\u20AC", "excl": "!", "exist": "\u2203", "Exists": "\u2203", "expectation": "\u2130", "exponentiale": "\u2147", "ExponentialE": "\u2147", "fallingdotseq": "\u2252", "Fcy": "\u0424", "fcy": "\u0444", "female": "\u2640", "ffilig": "\uFB03", "fflig": "\uFB00", "ffllig": "\uFB04", "Ffr": "\uD835\uDD09", "ffr": "\uD835\uDD23", "filig": "\uFB01", "FilledSmallSquare": "\u25FC", "FilledVerySmallSquare": "\u25AA", "fjlig": "fj", "flat": "\u266D", "fllig": "\uFB02", "fltns": "\u25B1", "fnof": "\u0192", "Fopf": "\uD835\uDD3D", "fopf": "\uD835\uDD57", "forall": "\u2200", "ForAll": "\u2200", "fork": "\u22D4", "forkv": "\u2AD9", "Fouriertrf": "\u2131", "fpartint": "\u2A0D", "frac12": "\u00BD", "frac13": "\u2153", "frac14": "\u00BC", "frac15": "\u2155", "frac16": "\u2159", "frac18": "\u215B", "frac23": "\u2154", "frac25": "\u2156", "frac34": "\u00BE", "frac35": "\u2157", "frac38": "\u215C", "frac45": "\u2158", "frac56": "\u215A", "frac58": "\u215D", "frac78": "\u215E", "frasl": "\u2044", "frown": "\u2322", "fscr": "\uD835\uDCBB", "Fscr": "\u2131", "gacute": "\u01F5", "Gamma": "\u0393", "gamma": "\u03B3", "Gammad": "\u03DC", "gammad": "\u03DD", "gap": "\u2A86", "Gbreve": "\u011E", "gbreve": "\u011F", "Gcedil": "\u0122", "Gcirc": "\u011C", "gcirc": "\u011D", "Gcy": "\u0413", "gcy": "\u0433", "Gdot": "\u0120", "gdot": "\u0121", "ge": "\u2265", "gE": "\u2267", "gEl": "\u2A8C", "gel": "\u22DB", "geq": "\u2265", "geqq": "\u2267", "geqslant": "\u2A7E", "gescc": "\u2AA9", "ges": "\u2A7E", "gesdot": "\u2A80", "gesdoto": "\u2A82", "gesdotol": "\u2A84", "gesl": "\u22DB\uFE00", "gesles": "\u2A94", "Gfr": "\uD835\uDD0A", "gfr": "\uD835\uDD24", "gg": "\u226B", "Gg": "\u22D9", "ggg": "\u22D9", "gimel": "\u2137", "GJcy": "\u0403", "gjcy": "\u0453", "gla": "\u2AA5", "gl": "\u2277", "glE": "\u2A92", "glj": "\u2AA4", "gnap": "\u2A8A", "gnapprox": "\u2A8A", "gne": "\u2A88", "gnE": "\u2269", "gneq": "\u2A88", "gneqq": "\u2269", "gnsim": "\u22E7", "Gopf": "\uD835\uDD3E", "gopf": "\uD835\uDD58", "grave": "`", "GreaterEqual": "\u2265", "GreaterEqualLess": "\u22DB", "GreaterFullEqual": "\u2267", "GreaterGreater": "\u2AA2", "GreaterLess": "\u2277", "GreaterSlantEqual": "\u2A7E", "GreaterTilde": "\u2273", "Gscr": "\uD835\uDCA2", "gscr": "\u210A", "gsim": "\u2273", "gsime": "\u2A8E", "gsiml": "\u2A90", "gtcc": "\u2AA7", "gtcir": "\u2A7A", "gt": ">", "GT": ">", "Gt": "\u226B", "gtdot": "\u22D7", "gtlPar": "\u2995", "gtquest": "\u2A7C", "gtrapprox": "\u2A86", "gtrarr": "\u2978", "gtrdot": "\u22D7", "gtreqless": "\u22DB", "gtreqqless": "\u2A8C", "gtrless": "\u2277", "gtrsim": "\u2273", "gvertneqq": "\u2269\uFE00", "gvnE": "\u2269\uFE00", "Hacek": "\u02C7", "hairsp": "\u200A", "half": "\u00BD", "hamilt": "\u210B", "HARDcy": "\u042A", "hardcy": "\u044A", "harrcir": "\u2948", "harr": "\u2194", "hArr": "\u21D4", "harrw": "\u21AD", "Hat": "^", "hbar": "\u210F", "Hcirc": "\u0124", "hcirc": "\u0125", "hearts": "\u2665", "heartsuit": "\u2665", "hellip": "\u2026", "hercon": "\u22B9", "hfr": "\uD835\uDD25", "Hfr": "\u210C", "HilbertSpace": "\u210B", "hksearow": "\u2925", "hkswarow": "\u2926", "hoarr": "\u21FF", "homtht": "\u223B", "hookleftarrow": "\u21A9", "hookrightarrow": "\u21AA", "hopf": "\uD835\uDD59", "Hopf": "\u210D", "horbar": "\u2015", "HorizontalLine": "\u2500", "hscr": "\uD835\uDCBD", "Hscr": "\u210B", "hslash": "\u210F", "Hstrok": "\u0126", "hstrok": "\u0127", "HumpDownHump": "\u224E", "HumpEqual": "\u224F", "hybull": "\u2043", "hyphen": "\u2010", "Iacute": "\u00CD", "iacute": "\u00ED", "ic": "\u2063", "Icirc": "\u00CE", "icirc": "\u00EE", "Icy": "\u0418", "icy": "\u0438", "Idot": "\u0130", "IEcy": "\u0415", "iecy": "\u0435", "iexcl": "\u00A1", "iff": "\u21D4", "ifr": "\uD835\uDD26", "Ifr": "\u2111", "Igrave": "\u00CC", "igrave": "\u00EC", "ii": "\u2148", "iiiint": "\u2A0C", "iiint": "\u222D", "iinfin": "\u29DC", "iiota": "\u2129", "IJlig": "\u0132", "ijlig": "\u0133", "Imacr": "\u012A", "imacr": "\u012B", "image": "\u2111", "ImaginaryI": "\u2148", "imagline": "\u2110", "imagpart": "\u2111", "imath": "\u0131", "Im": "\u2111", "imof": "\u22B7", "imped": "\u01B5", "Implies": "\u21D2", "incare": "\u2105", "in": "\u2208", "infin": "\u221E", "infintie": "\u29DD", "inodot": "\u0131", "intcal": "\u22BA", "int": "\u222B", "Int": "\u222C", "integers": "\u2124", "Integral": "\u222B", "intercal": "\u22BA", "Intersection": "\u22C2", "intlarhk": "\u2A17", "intprod": "\u2A3C", "InvisibleComma": "\u2063", "InvisibleTimes": "\u2062", "IOcy": "\u0401", "iocy": "\u0451", "Iogon": "\u012E", "iogon": "\u012F", "Iopf": "\uD835\uDD40", "iopf": "\uD835\uDD5A", "Iota": "\u0399", "iota": "\u03B9", "iprod": "\u2A3C", "iquest": "\u00BF", "iscr": "\uD835\uDCBE", "Iscr": "\u2110", "isin": "\u2208", "isindot": "\u22F5", "isinE": "\u22F9", "isins": "\u22F4", "isinsv": "\u22F3", "isinv": "\u2208", "it": "\u2062", "Itilde": "\u0128", "itilde": "\u0129", "Iukcy": "\u0406", "iukcy": "\u0456", "Iuml": "\u00CF", "iuml": "\u00EF", "Jcirc": "\u0134", "jcirc": "\u0135", "Jcy": "\u0419", "jcy": "\u0439", "Jfr": "\uD835\uDD0D", "jfr": "\uD835\uDD27", "jmath": "\u0237", "Jopf": "\uD835\uDD41", "jopf": "\uD835\uDD5B", "Jscr": "\uD835\uDCA5", "jscr": "\uD835\uDCBF", "Jsercy": "\u0408", "jsercy": "\u0458", "Jukcy": "\u0404", "jukcy": "\u0454", "Kappa": "\u039A", "kappa": "\u03BA", "kappav": "\u03F0", "Kcedil": "\u0136", "kcedil": "\u0137", "Kcy": "\u041A", "kcy": "\u043A", "Kfr": "\uD835\uDD0E", "kfr": "\uD835\uDD28", "kgreen": "\u0138", "KHcy": "\u0425", "khcy": "\u0445", "KJcy": "\u040C", "kjcy": "\u045C", "Kopf": "\uD835\uDD42", "kopf": "\uD835\uDD5C", "Kscr": "\uD835\uDCA6", "kscr": "\uD835\uDCC0", "lAarr": "\u21DA", "Lacute": "\u0139", "lacute": "\u013A", "laemptyv": "\u29B4", "lagran": "\u2112", "Lambda": "\u039B", "lambda": "\u03BB", "lang": "\u27E8", "Lang": "\u27EA", "langd": "\u2991", "langle": "\u27E8", "lap": "\u2A85", "Laplacetrf": "\u2112", "laquo": "\u00AB", "larrb": "\u21E4", "larrbfs": "\u291F", "larr": "\u2190", "Larr": "\u219E", "lArr": "\u21D0", "larrfs": "\u291D", "larrhk": "\u21A9", "larrlp": "\u21AB", "larrpl": "\u2939", "larrsim": "\u2973", "larrtl": "\u21A2", "latail": "\u2919", "lAtail": "\u291B", "lat": "\u2AAB", "late": "\u2AAD", "lates": "\u2AAD\uFE00", "lbarr": "\u290C", "lBarr": "\u290E", "lbbrk": "\u2772", "lbrace": "{", "lbrack": "[", "lbrke": "\u298B", "lbrksld": "\u298F", "lbrkslu": "\u298D", "Lcaron": "\u013D", "lcaron": "\u013E", "Lcedil": "\u013B", "lcedil": "\u013C", "lceil": "\u2308", "lcub": "{", "Lcy": "\u041B", "lcy": "\u043B", "ldca": "\u2936", "ldquo": "\u201C", "ldquor": "\u201E", "ldrdhar": "\u2967", "ldrushar": "\u294B", "ldsh": "\u21B2", "le": "\u2264", "lE": "\u2266", "LeftAngleBracket": "\u27E8", "LeftArrowBar": "\u21E4", "leftarrow": "\u2190", "LeftArrow": "\u2190", "Leftarrow": "\u21D0", "LeftArrowRightArrow": "\u21C6", "leftarrowtail": "\u21A2", "LeftCeiling": "\u2308", "LeftDoubleBracket": "\u27E6", "LeftDownTeeVector": "\u2961", "LeftDownVectorBar": "\u2959", "LeftDownVector": "\u21C3", "LeftFloor": "\u230A", "leftharpoondown": "\u21BD", "leftharpoonup": "\u21BC", "leftleftarrows": "\u21C7", "leftrightarrow": "\u2194", "LeftRightArrow": "\u2194", "Leftrightarrow": "\u21D4", "leftrightarrows": "\u21C6", "leftrightharpoons": "\u21CB", "leftrightsquigarrow": "\u21AD", "LeftRightVector": "\u294E", "LeftTeeArrow": "\u21A4", "LeftTee": "\u22A3", "LeftTeeVector": "\u295A", "leftthreetimes": "\u22CB", "LeftTriangleBar": "\u29CF", "LeftTriangle": "\u22B2", "LeftTriangleEqual": "\u22B4", "LeftUpDownVector": "\u2951", "LeftUpTeeVector": "\u2960", "LeftUpVectorBar": "\u2958", "LeftUpVector": "\u21BF", "LeftVectorBar": "\u2952", "LeftVector": "\u21BC", "lEg": "\u2A8B", "leg": "\u22DA", "leq": "\u2264", "leqq": "\u2266", "leqslant": "\u2A7D", "lescc": "\u2AA8", "les": "\u2A7D", "lesdot": "\u2A7F", "lesdoto": "\u2A81", "lesdotor": "\u2A83", "lesg": "\u22DA\uFE00", "lesges": "\u2A93", "lessapprox": "\u2A85", "lessdot": "\u22D6", "lesseqgtr": "\u22DA", "lesseqqgtr": "\u2A8B", "LessEqualGreater": "\u22DA", "LessFullEqual": "\u2266", "LessGreater": "\u2276", "lessgtr": "\u2276", "LessLess": "\u2AA1", "lesssim": "\u2272", "LessSlantEqual": "\u2A7D", "LessTilde": "\u2272", "lfisht": "\u297C", "lfloor": "\u230A", "Lfr": "\uD835\uDD0F", "lfr": "\uD835\uDD29", "lg": "\u2276", "lgE": "\u2A91", "lHar": "\u2962", "lhard": "\u21BD", "lharu": "\u21BC", "lharul": "\u296A", "lhblk": "\u2584", "LJcy": "\u0409", "ljcy": "\u0459", "llarr": "\u21C7", "ll": "\u226A", "Ll": "\u22D8", "llcorner": "\u231E", "Lleftarrow": "\u21DA", "llhard": "\u296B", "lltri": "\u25FA", "Lmidot": "\u013F", "lmidot": "\u0140", "lmoustache": "\u23B0", "lmoust": "\u23B0", "lnap": "\u2A89", "lnapprox": "\u2A89", "lne": "\u2A87", "lnE": "\u2268", "lneq": "\u2A87", "lneqq": "\u2268", "lnsim": "\u22E6", "loang": "\u27EC", "loarr": "\u21FD", "lobrk": "\u27E6", "longleftarrow": "\u27F5", "LongLeftArrow": "\u27F5", "Longleftarrow": "\u27F8", "longleftrightarrow": "\u27F7", "LongLeftRightArrow": "\u27F7", "Longleftrightarrow": "\u27FA", "longmapsto": "\u27FC", "longrightarrow": "\u27F6", "LongRightArrow": "\u27F6", "Longrightarrow": "\u27F9", "looparrowleft": "\u21AB", "looparrowright": "\u21AC", "lopar": "\u2985", "Lopf": "\uD835\uDD43", "lopf": "\uD835\uDD5D", "loplus": "\u2A2D", "lotimes": "\u2A34", "lowast": "\u2217", "lowbar": "_", "LowerLeftArrow": "\u2199", "LowerRightArrow": "\u2198", "loz": "\u25CA", "lozenge": "\u25CA", "lozf": "\u29EB", "lpar": "(", "lparlt": "\u2993", "lrarr": "\u21C6", "lrcorner": "\u231F", "lrhar": "\u21CB", "lrhard": "\u296D", "lrm": "\u200E", "lrtri": "\u22BF", "lsaquo": "\u2039", "lscr": "\uD835\uDCC1", "Lscr": "\u2112", "lsh": "\u21B0", "Lsh": "\u21B0", "lsim": "\u2272", "lsime": "\u2A8D", "lsimg": "\u2A8F", "lsqb": "[", "lsquo": "\u2018", "lsquor": "\u201A", "Lstrok": "\u0141", "lstrok": "\u0142", "ltcc": "\u2AA6", "ltcir": "\u2A79", "lt": "<", "LT": "<", "Lt": "\u226A", "ltdot": "\u22D6", "lthree": "\u22CB", "ltimes": "\u22C9", "ltlarr": "\u2976", "ltquest": "\u2A7B", "ltri": "\u25C3", "ltrie": "\u22B4", "ltrif": "\u25C2", "ltrPar": "\u2996", "lurdshar": "\u294A", "luruhar": "\u2966", "lvertneqq": "\u2268\uFE00", "lvnE": "\u2268\uFE00", "macr": "\u00AF", "male": "\u2642", "malt": "\u2720", "maltese": "\u2720", "Map": "\u2905", "map": "\u21A6", "mapsto": "\u21A6", "mapstodown": "\u21A7", "mapstoleft": "\u21A4", "mapstoup": "\u21A5", "marker": "\u25AE", "mcomma": "\u2A29", "Mcy": "\u041C", "mcy": "\u043C", "mdash": "\u2014", "mDDot": "\u223A", "measuredangle": "\u2221", "MediumSpace": "\u205F", "Mellintrf": "\u2133", "Mfr": "\uD835\uDD10", "mfr": "\uD835\uDD2A", "mho": "\u2127", "micro": "\u00B5", "midast": "*", "midcir": "\u2AF0", "mid": "\u2223", "middot": "\u00B7", "minusb": "\u229F", "minus": "\u2212", "minusd": "\u2238", "minusdu": "\u2A2A", "MinusPlus": "\u2213", "mlcp": "\u2ADB", "mldr": "\u2026", "mnplus": "\u2213", "models": "\u22A7", "Mopf": "\uD835\uDD44", "mopf": "\uD835\uDD5E", "mp": "\u2213", "mscr": "\uD835\uDCC2", "Mscr": "\u2133", "mstpos": "\u223E", "Mu": "\u039C", "mu": "\u03BC", "multimap": "\u22B8", "mumap": "\u22B8", "nabla": "\u2207", "Nacute": "\u0143", "nacute": "\u0144", "nang": "\u2220\u20D2", "nap": "\u2249", "napE": "\u2A70\u0338", "napid": "\u224B\u0338", "napos": "\u0149", "napprox": "\u2249", "natural": "\u266E", "naturals": "\u2115", "natur": "\u266E", "nbsp": "\u00A0", "nbump": "\u224E\u0338", "nbumpe": "\u224F\u0338", "ncap": "\u2A43", "Ncaron": "\u0147", "ncaron": "\u0148", "Ncedil": "\u0145", "ncedil": "\u0146", "ncong": "\u2247", "ncongdot": "\u2A6D\u0338", "ncup": "\u2A42", "Ncy": "\u041D", "ncy": "\u043D", "ndash": "\u2013", "nearhk": "\u2924", "nearr": "\u2197", "neArr": "\u21D7", "nearrow": "\u2197", "ne": "\u2260", "nedot": "\u2250\u0338", "NegativeMediumSpace": "\u200B", "NegativeThickSpace": "\u200B", "NegativeThinSpace": "\u200B", "NegativeVeryThinSpace": "\u200B", "nequiv": "\u2262", "nesear": "\u2928", "nesim": "\u2242\u0338", "NestedGreaterGreater": "\u226B", "NestedLessLess": "\u226A", "NewLine": "\n", "nexist": "\u2204", "nexists": "\u2204", "Nfr": "\uD835\uDD11", "nfr": "\uD835\uDD2B", "ngE": "\u2267\u0338", "nge": "\u2271", "ngeq": "\u2271", "ngeqq": "\u2267\u0338", "ngeqslant": "\u2A7E\u0338", "nges": "\u2A7E\u0338", "nGg": "\u22D9\u0338", "ngsim": "\u2275", "nGt": "\u226B\u20D2", "ngt": "\u226F", "ngtr": "\u226F", "nGtv": "\u226B\u0338", "nharr": "\u21AE", "nhArr": "\u21CE", "nhpar": "\u2AF2", "ni": "\u220B", "nis": "\u22FC", "nisd": "\u22FA", "niv": "\u220B", "NJcy": "\u040A", "njcy": "\u045A", "nlarr": "\u219A", "nlArr": "\u21CD", "nldr": "\u2025", "nlE": "\u2266\u0338", "nle": "\u2270", "nleftarrow": "\u219A", "nLeftarrow": "\u21CD", "nleftrightarrow": "\u21AE", "nLeftrightarrow": "\u21CE", "nleq": "\u2270", "nleqq": "\u2266\u0338", "nleqslant": "\u2A7D\u0338", "nles": "\u2A7D\u0338", "nless": "\u226E", "nLl": "\u22D8\u0338", "nlsim": "\u2274", "nLt": "\u226A\u20D2", "nlt": "\u226E", "nltri": "\u22EA", "nltrie": "\u22EC", "nLtv": "\u226A\u0338", "nmid": "\u2224", "NoBreak": "\u2060", "NonBreakingSpace": "\u00A0", "nopf": "\uD835\uDD5F", "Nopf": "\u2115", "Not": "\u2AEC", "not": "\u00AC", "NotCongruent": "\u2262", "NotCupCap": "\u226D", "NotDoubleVerticalBar": "\u2226", "NotElement": "\u2209", "NotEqual": "\u2260", "NotEqualTilde": "\u2242\u0338", "NotExists": "\u2204", "NotGreater": "\u226F", "NotGreaterEqual": "\u2271", "NotGreaterFullEqual": "\u2267\u0338", "NotGreaterGreater": "\u226B\u0338", "NotGreaterLess": "\u2279", "NotGreaterSlantEqual": "\u2A7E\u0338", "NotGreaterTilde": "\u2275", "NotHumpDownHump": "\u224E\u0338", "NotHumpEqual": "\u224F\u0338", "notin": "\u2209", "notindot": "\u22F5\u0338", "notinE": "\u22F9\u0338", "notinva": "\u2209", "notinvb": "\u22F7", "notinvc": "\u22F6", "NotLeftTriangleBar": "\u29CF\u0338", "NotLeftTriangle": "\u22EA", "NotLeftTriangleEqual": "\u22EC", "NotLess": "\u226E", "NotLessEqual": "\u2270", "NotLessGreater": "\u2278", "NotLessLess": "\u226A\u0338", "NotLessSlantEqual": "\u2A7D\u0338", "NotLessTilde": "\u2274", "NotNestedGreaterGreater": "\u2AA2\u0338", "NotNestedLessLess": "\u2AA1\u0338", "notni": "\u220C", "notniva": "\u220C", "notnivb": "\u22FE", "notnivc": "\u22FD", "NotPrecedes": "\u2280", "NotPrecedesEqual": "\u2AAF\u0338", "NotPrecedesSlantEqual": "\u22E0", "NotReverseElement": "\u220C", "NotRightTriangleBar": "\u29D0\u0338", "NotRightTriangle": "\u22EB", "NotRightTriangleEqual": "\u22ED", "NotSquareSubset": "\u228F\u0338", "NotSquareSubsetEqual": "\u22E2", "NotSquareSuperset": "\u2290\u0338", "NotSquareSupersetEqual": "\u22E3", "NotSubset": "\u2282\u20D2", "NotSubsetEqual": "\u2288", "NotSucceeds": "\u2281", "NotSucceedsEqual": "\u2AB0\u0338", "NotSucceedsSlantEqual": "\u22E1", "NotSucceedsTilde": "\u227F\u0338", "NotSuperset": "\u2283\u20D2", "NotSupersetEqual": "\u2289", "NotTilde": "\u2241", "NotTildeEqual": "\u2244", "NotTildeFullEqual": "\u2247", "NotTildeTilde": "\u2249", "NotVerticalBar": "\u2224", "nparallel": "\u2226", "npar": "\u2226", "nparsl": "\u2AFD\u20E5", "npart": "\u2202\u0338", "npolint": "\u2A14", "npr": "\u2280", "nprcue": "\u22E0", "nprec": "\u2280", "npreceq": "\u2AAF\u0338", "npre": "\u2AAF\u0338", "nrarrc": "\u2933\u0338", "nrarr": "\u219B", "nrArr": "\u21CF", "nrarrw": "\u219D\u0338", "nrightarrow": "\u219B", "nRightarrow": "\u21CF", "nrtri": "\u22EB", "nrtrie": "\u22ED", "nsc": "\u2281", "nsccue": "\u22E1", "nsce": "\u2AB0\u0338", "Nscr": "\uD835\uDCA9", "nscr": "\uD835\uDCC3", "nshortmid": "\u2224", "nshortparallel": "\u2226", "nsim": "\u2241", "nsime": "\u2244", "nsimeq": "\u2244", "nsmid": "\u2224", "nspar": "\u2226", "nsqsube": "\u22E2", "nsqsupe": "\u22E3", "nsub": "\u2284", "nsubE": "\u2AC5\u0338", "nsube": "\u2288", "nsubset": "\u2282\u20D2", "nsubseteq": "\u2288", "nsubseteqq": "\u2AC5\u0338", "nsucc": "\u2281", "nsucceq": "\u2AB0\u0338", "nsup": "\u2285", "nsupE": "\u2AC6\u0338", "nsupe": "\u2289", "nsupset": "\u2283\u20D2", "nsupseteq": "\u2289", "nsupseteqq": "\u2AC6\u0338", "ntgl": "\u2279", "Ntilde": "\u00D1", "ntilde": "\u00F1", "ntlg": "\u2278", "ntriangleleft": "\u22EA", "ntrianglelefteq": "\u22EC", "ntriangleright": "\u22EB", "ntrianglerighteq": "\u22ED", "Nu": "\u039D", "nu": "\u03BD", "num": "#", "numero": "\u2116", "numsp": "\u2007", "nvap": "\u224D\u20D2", "nvdash": "\u22AC", "nvDash": "\u22AD", "nVdash": "\u22AE", "nVDash": "\u22AF", "nvge": "\u2265\u20D2", "nvgt": ">\u20D2", "nvHarr": "\u2904", "nvinfin": "\u29DE", "nvlArr": "\u2902", "nvle": "\u2264\u20D2", "nvlt": "<\u20D2", "nvltrie": "\u22B4\u20D2", "nvrArr": "\u2903", "nvrtrie": "\u22B5\u20D2", "nvsim": "\u223C\u20D2", "nwarhk": "\u2923", "nwarr": "\u2196", "nwArr": "\u21D6", "nwarrow": "\u2196", "nwnear": "\u2927", "Oacute": "\u00D3", "oacute": "\u00F3", "oast": "\u229B", "Ocirc": "\u00D4", "ocirc": "\u00F4", "ocir": "\u229A", "Ocy": "\u041E", "ocy": "\u043E", "odash": "\u229D", "Odblac": "\u0150", "odblac": "\u0151", "odiv": "\u2A38", "odot": "\u2299", "odsold": "\u29BC", "OElig": "\u0152", "oelig": "\u0153", "ofcir": "\u29BF", "Ofr": "\uD835\uDD12", "ofr": "\uD835\uDD2C", "ogon": "\u02DB", "Ograve": "\u00D2", "ograve": "\u00F2", "ogt": "\u29C1", "ohbar": "\u29B5", "ohm": "\u03A9", "oint": "\u222E", "olarr": "\u21BA", "olcir": "\u29BE", "olcross": "\u29BB", "oline": "\u203E", "olt": "\u29C0", "Omacr": "\u014C", "omacr": "\u014D", "Omega": "\u03A9", "omega": "\u03C9", "Omicron": "\u039F", "omicron": "\u03BF", "omid": "\u29B6", "ominus": "\u2296", "Oopf": "\uD835\uDD46", "oopf": "\uD835\uDD60", "opar": "\u29B7", "OpenCurlyDoubleQuote": "\u201C", "OpenCurlyQuote": "\u2018", "operp": "\u29B9", "oplus": "\u2295", "orarr": "\u21BB", "Or": "\u2A54", "or": "\u2228", "ord": "\u2A5D", "order": "\u2134", "orderof": "\u2134", "ordf": "\u00AA", "ordm": "\u00BA", "origof": "\u22B6", "oror": "\u2A56", "orslope": "\u2A57", "orv": "\u2A5B", "oS": "\u24C8", "Oscr": "\uD835\uDCAA", "oscr": "\u2134", "Oslash": "\u00D8", "oslash": "\u00F8", "osol": "\u2298", "Otilde": "\u00D5", "otilde": "\u00F5", "otimesas": "\u2A36", "Otimes": "\u2A37", "otimes": "\u2297", "Ouml": "\u00D6", "ouml": "\u00F6", "ovbar": "\u233D", "OverBar": "\u203E", "OverBrace": "\u23DE", "OverBracket": "\u23B4", "OverParenthesis": "\u23DC", "para": "\u00B6", "parallel": "\u2225", "par": "\u2225", "parsim": "\u2AF3", "parsl": "\u2AFD", "part": "\u2202", "PartialD": "\u2202", "Pcy": "\u041F", "pcy": "\u043F", "percnt": "%", "period": ".", "permil": "\u2030", "perp": "\u22A5", "pertenk": "\u2031", "Pfr": "\uD835\uDD13", "pfr": "\uD835\uDD2D", "Phi": "\u03A6", "phi": "\u03C6", "phiv": "\u03D5", "phmmat": "\u2133", "phone": "\u260E", "Pi": "\u03A0", "pi": "\u03C0", "pitchfork": "\u22D4", "piv": "\u03D6", "planck": "\u210F", "planckh": "\u210E", "plankv": "\u210F", "plusacir": "\u2A23", "plusb": "\u229E", "pluscir": "\u2A22", "plus": "+", "plusdo": "\u2214", "plusdu": "\u2A25", "pluse": "\u2A72", "PlusMinus": "\u00B1", "plusmn": "\u00B1", "plussim": "\u2A26", "plustwo": "\u2A27", "pm": "\u00B1", "Poincareplane": "\u210C", "pointint": "\u2A15", "popf": "\uD835\uDD61", "Popf": "\u2119", "pound": "\u00A3", "prap": "\u2AB7", "Pr": "\u2ABB", "pr": "\u227A", "prcue": "\u227C", "precapprox": "\u2AB7", "prec": "\u227A", "preccurlyeq": "\u227C", "Precedes": "\u227A", "PrecedesEqual": "\u2AAF", "PrecedesSlantEqual": "\u227C", "PrecedesTilde": "\u227E", "preceq": "\u2AAF", "precnapprox": "\u2AB9", "precneqq": "\u2AB5", "precnsim": "\u22E8", "pre": "\u2AAF", "prE": "\u2AB3", "precsim": "\u227E", "prime": "\u2032", "Prime": "\u2033", "primes": "\u2119", "prnap": "\u2AB9", "prnE": "\u2AB5", "prnsim": "\u22E8", "prod": "\u220F", "Product": "\u220F", "profalar": "\u232E", "profline": "\u2312", "profsurf": "\u2313", "prop": "\u221D", "Proportional": "\u221D", "Proportion": "\u2237", "propto": "\u221D", "prsim": "\u227E", "prurel": "\u22B0", "Pscr": "\uD835\uDCAB", "pscr": "\uD835\uDCC5", "Psi": "\u03A8", "psi": "\u03C8", "puncsp": "\u2008", "Qfr": "\uD835\uDD14", "qfr": "\uD835\uDD2E", "qint": "\u2A0C", "qopf": "\uD835\uDD62", "Qopf": "\u211A", "qprime": "\u2057", "Qscr": "\uD835\uDCAC", "qscr": "\uD835\uDCC6", "quaternions": "\u210D", "quatint": "\u2A16", "quest": "?", "questeq": "\u225F", "quot": "\"", "QUOT": "\"", "rAarr": "\u21DB", "race": "\u223D\u0331", "Racute": "\u0154", "racute": "\u0155", "radic": "\u221A", "raemptyv": "\u29B3", "rang": "\u27E9", "Rang": "\u27EB", "rangd": "\u2992", "range": "\u29A5", "rangle": "\u27E9", "raquo": "\u00BB", "rarrap": "\u2975", "rarrb": "\u21E5", "rarrbfs": "\u2920", "rarrc": "\u2933", "rarr": "\u2192", "Rarr": "\u21A0", "rArr": "\u21D2", "rarrfs": "\u291E", "rarrhk": "\u21AA", "rarrlp": "\u21AC", "rarrpl": "\u2945", "rarrsim": "\u2974", "Rarrtl": "\u2916", "rarrtl": "\u21A3", "rarrw": "\u219D", "ratail": "\u291A", "rAtail": "\u291C", "ratio": "\u2236", "rationals": "\u211A", "rbarr": "\u290D", "rBarr": "\u290F", "RBarr": "\u2910", "rbbrk": "\u2773", "rbrace": "}", "rbrack": "]", "rbrke": "\u298C", "rbrksld": "\u298E", "rbrkslu": "\u2990", "Rcaron": "\u0158", "rcaron": "\u0159", "Rcedil": "\u0156", "rcedil": "\u0157", "rceil": "\u2309", "rcub": "}", "Rcy": "\u0420", "rcy": "\u0440", "rdca": "\u2937", "rdldhar": "\u2969", "rdquo": "\u201D", "rdquor": "\u201D", "rdsh": "\u21B3", "real": "\u211C", "realine": "\u211B", "realpart": "\u211C", "reals": "\u211D", "Re": "\u211C", "rect": "\u25AD", "reg": "\u00AE", "REG": "\u00AE", "ReverseElement": "\u220B", "ReverseEquilibrium": "\u21CB", "ReverseUpEquilibrium": "\u296F", "rfisht": "\u297D", "rfloor": "\u230B", "rfr": "\uD835\uDD2F", "Rfr": "\u211C", "rHar": "\u2964", "rhard": "\u21C1", "rharu": "\u21C0", "rharul": "\u296C", "Rho": "\u03A1", "rho": "\u03C1", "rhov": "\u03F1", "RightAngleBracket": "\u27E9", "RightArrowBar": "\u21E5", "rightarrow": "\u2192", "RightArrow": "\u2192", "Rightarrow": "\u21D2", "RightArrowLeftArrow": "\u21C4", "rightarrowtail": "\u21A3", "RightCeiling": "\u2309", "RightDoubleBracket": "\u27E7", "RightDownTeeVector": "\u295D", "RightDownVectorBar": "\u2955", "RightDownVector": "\u21C2", "RightFloor": "\u230B", "rightharpoondown": "\u21C1", "rightharpoonup": "\u21C0", "rightleftarrows": "\u21C4", "rightleftharpoons": "\u21CC", "rightrightarrows": "\u21C9", "rightsquigarrow": "\u219D", "RightTeeArrow": "\u21A6", "RightTee": "\u22A2", "RightTeeVector": "\u295B", "rightthreetimes": "\u22CC", "RightTriangleBar": "\u29D0", "RightTriangle": "\u22B3", "RightTriangleEqual": "\u22B5", "RightUpDownVector": "\u294F", "RightUpTeeVector": "\u295C", "RightUpVectorBar": "\u2954", "RightUpVector": "\u21BE", "RightVectorBar": "\u2953", "RightVector": "\u21C0", "ring": "\u02DA", "risingdotseq": "\u2253", "rlarr": "\u21C4", "rlhar": "\u21CC", "rlm": "\u200F", "rmoustache": "\u23B1", "rmoust": "\u23B1", "rnmid": "\u2AEE", "roang": "\u27ED", "roarr": "\u21FE", "robrk": "\u27E7", "ropar": "\u2986", "ropf": "\uD835\uDD63", "Ropf": "\u211D", "roplus": "\u2A2E", "rotimes": "\u2A35", "RoundImplies": "\u2970", "rpar": ")", "rpargt": "\u2994", "rppolint": "\u2A12", "rrarr": "\u21C9", "Rrightarrow": "\u21DB", "rsaquo": "\u203A", "rscr": "\uD835\uDCC7", "Rscr": "\u211B", "rsh": "\u21B1", "Rsh": "\u21B1", "rsqb": "]", "rsquo": "\u2019", "rsquor": "\u2019", "rthree": "\u22CC", "rtimes": "\u22CA", "rtri": "\u25B9", "rtrie": "\u22B5", "rtrif": "\u25B8", "rtriltri": "\u29CE", "RuleDelayed": "\u29F4", "ruluhar": "\u2968", "rx": "\u211E", "Sacute": "\u015A", "sacute": "\u015B", "sbquo": "\u201A", "scap": "\u2AB8", "Scaron": "\u0160", "scaron": "\u0161", "Sc": "\u2ABC", "sc": "\u227B", "sccue": "\u227D", "sce": "\u2AB0", "scE": "\u2AB4", "Scedil": "\u015E", "scedil": "\u015F", "Scirc": "\u015C", "scirc": "\u015D", "scnap": "\u2ABA", "scnE": "\u2AB6", "scnsim": "\u22E9", "scpolint": "\u2A13", "scsim": "\u227F", "Scy": "\u0421", "scy": "\u0441", "sdotb": "\u22A1", "sdot": "\u22C5", "sdote": "\u2A66", "searhk": "\u2925", "searr": "\u2198", "seArr": "\u21D8", "searrow": "\u2198", "sect": "\u00A7", "semi": ";", "seswar": "\u2929", "setminus": "\u2216", "setmn": "\u2216", "sext": "\u2736", "Sfr": "\uD835\uDD16", "sfr": "\uD835\uDD30", "sfrown": "\u2322", "sharp": "\u266F", "SHCHcy": "\u0429", "shchcy": "\u0449", "SHcy": "\u0428", "shcy": "\u0448", "ShortDownArrow": "\u2193", "ShortLeftArrow": "\u2190", "shortmid": "\u2223", "shortparallel": "\u2225", "ShortRightArrow": "\u2192", "ShortUpArrow": "\u2191", "shy": "\u00AD", "Sigma": "\u03A3", "sigma": "\u03C3", "sigmaf": "\u03C2", "sigmav": "\u03C2", "sim": "\u223C", "simdot": "\u2A6A", "sime": "\u2243", "simeq": "\u2243", "simg": "\u2A9E", "simgE": "\u2AA0", "siml": "\u2A9D", "simlE": "\u2A9F", "simne": "\u2246", "simplus": "\u2A24", "simrarr": "\u2972", "slarr": "\u2190", "SmallCircle": "\u2218", "smallsetminus": "\u2216", "smashp": "\u2A33", "smeparsl": "\u29E4", "smid": "\u2223", "smile": "\u2323", "smt": "\u2AAA", "smte": "\u2AAC", "smtes": "\u2AAC\uFE00", "SOFTcy": "\u042C", "softcy": "\u044C", "solbar": "\u233F", "solb": "\u29C4", "sol": "/", "Sopf": "\uD835\uDD4A", "sopf": "\uD835\uDD64", "spades": "\u2660", "spadesuit": "\u2660", "spar": "\u2225", "sqcap": "\u2293", "sqcaps": "\u2293\uFE00", "sqcup": "\u2294", "sqcups": "\u2294\uFE00", "Sqrt": "\u221A", "sqsub": "\u228F", "sqsube": "\u2291", "sqsubset": "\u228F", "sqsubseteq": "\u2291", "sqsup": "\u2290", "sqsupe": "\u2292", "sqsupset": "\u2290", "sqsupseteq": "\u2292", "square": "\u25A1", "Square": "\u25A1", "SquareIntersection": "\u2293", "SquareSubset": "\u228F", "SquareSubsetEqual": "\u2291", "SquareSuperset": "\u2290", "SquareSupersetEqual": "\u2292", "SquareUnion": "\u2294", "squarf": "\u25AA", "squ": "\u25A1", "squf": "\u25AA", "srarr": "\u2192", "Sscr": "\uD835\uDCAE", "sscr": "\uD835\uDCC8", "ssetmn": "\u2216", "ssmile": "\u2323", "sstarf": "\u22C6", "Star": "\u22C6", "star": "\u2606", "starf": "\u2605", "straightepsilon": "\u03F5", "straightphi": "\u03D5", "strns": "\u00AF", "sub": "\u2282", "Sub": "\u22D0", "subdot": "\u2ABD", "subE": "\u2AC5", "sube": "\u2286", "subedot": "\u2AC3", "submult": "\u2AC1", "subnE": "\u2ACB", "subne": "\u228A", "subplus": "\u2ABF", "subrarr": "\u2979", "subset": "\u2282", "Subset": "\u22D0", "subseteq": "\u2286", "subseteqq": "\u2AC5", "SubsetEqual": "\u2286", "subsetneq": "\u228A", "subsetneqq": "\u2ACB", "subsim": "\u2AC7", "subsub": "\u2AD5", "subsup": "\u2AD3", "succapprox": "\u2AB8", "succ": "\u227B", "succcurlyeq": "\u227D", "Succeeds": "\u227B", "SucceedsEqual": "\u2AB0", "SucceedsSlantEqual": "\u227D", "SucceedsTilde": "\u227F", "succeq": "\u2AB0", "succnapprox": "\u2ABA", "succneqq": "\u2AB6", "succnsim": "\u22E9", "succsim": "\u227F", "SuchThat": "\u220B", "sum": "\u2211", "Sum": "\u2211", "sung": "\u266A", "sup1": "\u00B9", "sup2": "\u00B2", "sup3": "\u00B3", "sup": "\u2283", "Sup": "\u22D1", "supdot": "\u2ABE", "supdsub": "\u2AD8", "supE": "\u2AC6", "supe": "\u2287", "supedot": "\u2AC4", "Superset": "\u2283", "SupersetEqual": "\u2287", "suphsol": "\u27C9", "suphsub": "\u2AD7", "suplarr": "\u297B", "supmult": "\u2AC2", "supnE": "\u2ACC", "supne": "\u228B", "supplus": "\u2AC0", "supset": "\u2283", "Supset": "\u22D1", "supseteq": "\u2287", "supseteqq": "\u2AC6", "supsetneq": "\u228B", "supsetneqq": "\u2ACC", "supsim": "\u2AC8", "supsub": "\u2AD4", "supsup": "\u2AD6", "swarhk": "\u2926", "swarr": "\u2199", "swArr": "\u21D9", "swarrow": "\u2199", "swnwar": "\u292A", "szlig": "\u00DF", "Tab": "\t", "target": "\u2316", "Tau": "\u03A4", "tau": "\u03C4", "tbrk": "\u23B4", "Tcaron": "\u0164", "tcaron": "\u0165", "Tcedil": "\u0162", "tcedil": "\u0163", "Tcy": "\u0422", "tcy": "\u0442", "tdot": "\u20DB", "telrec": "\u2315", "Tfr": "\uD835\uDD17", "tfr": "\uD835\uDD31", "there4": "\u2234", "therefore": "\u2234", "Therefore": "\u2234", "Theta": "\u0398", "theta": "\u03B8", "thetasym": "\u03D1", "thetav": "\u03D1", "thickapprox": "\u2248", "thicksim": "\u223C", "ThickSpace": "\u205F\u200A", "ThinSpace": "\u2009", "thinsp": "\u2009", "thkap": "\u2248", "thksim": "\u223C", "THORN": "\u00DE", "thorn": "\u00FE", "tilde": "\u02DC", "Tilde": "\u223C", "TildeEqual": "\u2243", "TildeFullEqual": "\u2245", "TildeTilde": "\u2248", "timesbar": "\u2A31", "timesb": "\u22A0", "times": "\u00D7", "timesd": "\u2A30", "tint": "\u222D", "toea": "\u2928", "topbot": "\u2336", "topcir": "\u2AF1", "top": "\u22A4", "Topf": "\uD835\uDD4B", "topf": "\uD835\uDD65", "topfork": "\u2ADA", "tosa": "\u2929", "tprime": "\u2034", "trade": "\u2122", "TRADE": "\u2122", "triangle": "\u25B5", "triangledown": "\u25BF", "triangleleft": "\u25C3", "trianglelefteq": "\u22B4", "triangleq": "\u225C", "triangleright": "\u25B9", "trianglerighteq": "\u22B5", "tridot": "\u25EC", "trie": "\u225C", "triminus": "\u2A3A", "TripleDot": "\u20DB", "triplus": "\u2A39", "trisb": "\u29CD", "tritime": "\u2A3B", "trpezium": "\u23E2", "Tscr": "\uD835\uDCAF", "tscr": "\uD835\uDCC9", "TScy": "\u0426", "tscy": "\u0446", "TSHcy": "\u040B", "tshcy": "\u045B", "Tstrok": "\u0166", "tstrok": "\u0167", "twixt": "\u226C", "twoheadleftarrow": "\u219E", "twoheadrightarrow": "\u21A0", "Uacute": "\u00DA", "uacute": "\u00FA", "uarr": "\u2191", "Uarr": "\u219F", "uArr": "\u21D1", "Uarrocir": "\u2949", "Ubrcy": "\u040E", "ubrcy": "\u045E", "Ubreve": "\u016C", "ubreve": "\u016D", "Ucirc": "\u00DB", "ucirc": "\u00FB", "Ucy": "\u0423", "ucy": "\u0443", "udarr": "\u21C5", "Udblac": "\u0170", "udblac": "\u0171", "udhar": "\u296E", "ufisht": "\u297E", "Ufr": "\uD835\uDD18", "ufr": "\uD835\uDD32", "Ugrave": "\u00D9", "ugrave": "\u00F9", "uHar": "\u2963", "uharl": "\u21BF", "uharr": "\u21BE", "uhblk": "\u2580", "ulcorn": "\u231C", "ulcorner": "\u231C", "ulcrop": "\u230F", "ultri": "\u25F8", "Umacr": "\u016A", "umacr": "\u016B", "uml": "\u00A8", "UnderBar": "_", "UnderBrace": "\u23DF", "UnderBracket": "\u23B5", "UnderParenthesis": "\u23DD", "Union": "\u22C3", "UnionPlus": "\u228E", "Uogon": "\u0172", "uogon": "\u0173", "Uopf": "\uD835\uDD4C", "uopf": "\uD835\uDD66", "UpArrowBar": "\u2912", "uparrow": "\u2191", "UpArrow": "\u2191", "Uparrow": "\u21D1", "UpArrowDownArrow": "\u21C5", "updownarrow": "\u2195", "UpDownArrow": "\u2195", "Updownarrow": "\u21D5", "UpEquilibrium": "\u296E", "upharpoonleft": "\u21BF", "upharpoonright": "\u21BE", "uplus": "\u228E", "UpperLeftArrow": "\u2196", "UpperRightArrow": "\u2197", "upsi": "\u03C5", "Upsi": "\u03D2", "upsih": "\u03D2", "Upsilon": "\u03A5", "upsilon": "\u03C5", "UpTeeArrow": "\u21A5", "UpTee": "\u22A5", "upuparrows": "\u21C8", "urcorn": "\u231D", "urcorner": "\u231D", "urcrop": "\u230E", "Uring": "\u016E", "uring": "\u016F", "urtri": "\u25F9", "Uscr": "\uD835\uDCB0", "uscr": "\uD835\uDCCA", "utdot": "\u22F0", "Utilde": "\u0168", "utilde": "\u0169", "utri": "\u25B5", "utrif": "\u25B4", "uuarr": "\u21C8", "Uuml": "\u00DC", "uuml": "\u00FC", "uwangle": "\u29A7", "vangrt": "\u299C", "varepsilon": "\u03F5", "varkappa": "\u03F0", "varnothing": "\u2205", "varphi": "\u03D5", "varpi": "\u03D6", "varpropto": "\u221D", "varr": "\u2195", "vArr": "\u21D5", "varrho": "\u03F1", "varsigma": "\u03C2", "varsubsetneq": "\u228A\uFE00", "varsubsetneqq": "\u2ACB\uFE00", "varsupsetneq": "\u228B\uFE00", "varsupsetneqq": "\u2ACC\uFE00", "vartheta": "\u03D1", "vartriangleleft": "\u22B2", "vartriangleright": "\u22B3", "vBar": "\u2AE8", "Vbar": "\u2AEB", "vBarv": "\u2AE9", "Vcy": "\u0412", "vcy": "\u0432", "vdash": "\u22A2", "vDash": "\u22A8", "Vdash": "\u22A9", "VDash": "\u22AB", "Vdashl": "\u2AE6", "veebar": "\u22BB", "vee": "\u2228", "Vee": "\u22C1", "veeeq": "\u225A", "vellip": "\u22EE", "verbar": "|", "Verbar": "\u2016", "vert": "|", "Vert": "\u2016", "VerticalBar": "\u2223", "VerticalLine": "|", "VerticalSeparator": "\u2758", "VerticalTilde": "\u2240", "VeryThinSpace": "\u200A", "Vfr": "\uD835\uDD19", "vfr": "\uD835\uDD33", "vltri": "\u22B2", "vnsub": "\u2282\u20D2", "vnsup": "\u2283\u20D2", "Vopf": "\uD835\uDD4D", "vopf": "\uD835\uDD67", "vprop": "\u221D", "vrtri": "\u22B3", "Vscr": "\uD835\uDCB1", "vscr": "\uD835\uDCCB", "vsubnE": "\u2ACB\uFE00", "vsubne": "\u228A\uFE00", "vsupnE": "\u2ACC\uFE00", "vsupne": "\u228B\uFE00", "Vvdash": "\u22AA", "vzigzag": "\u299A", "Wcirc": "\u0174", "wcirc": "\u0175", "wedbar": "\u2A5F", "wedge": "\u2227", "Wedge": "\u22C0", "wedgeq": "\u2259", "weierp": "\u2118", "Wfr": "\uD835\uDD1A", "wfr": "\uD835\uDD34", "Wopf": "\uD835\uDD4E", "wopf": "\uD835\uDD68", "wp": "\u2118", "wr": "\u2240", "wreath": "\u2240", "Wscr": "\uD835\uDCB2", "wscr": "\uD835\uDCCC", "xcap": "\u22C2", "xcirc": "\u25EF", "xcup": "\u22C3", "xdtri": "\u25BD", "Xfr": "\uD835\uDD1B", "xfr": "\uD835\uDD35", "xharr": "\u27F7", "xhArr": "\u27FA", "Xi": "\u039E", "xi": "\u03BE", "xlarr": "\u27F5", "xlArr": "\u27F8", "xmap": "\u27FC", "xnis": "\u22FB", "xodot": "\u2A00", "Xopf": "\uD835\uDD4F", "xopf": "\uD835\uDD69", "xoplus": "\u2A01", "xotime": "\u2A02", "xrarr": "\u27F6", "xrArr": "\u27F9", "Xscr": "\uD835\uDCB3", "xscr": "\uD835\uDCCD", "xsqcup": "\u2A06", "xuplus": "\u2A04", "xutri": "\u25B3", "xvee": "\u22C1", "xwedge": "\u22C0", "Yacute": "\u00DD", "yacute": "\u00FD", "YAcy": "\u042F", "yacy": "\u044F", "Ycirc": "\u0176", "ycirc": "\u0177", "Ycy": "\u042B", "ycy": "\u044B", "yen": "\u00A5", "Yfr": "\uD835\uDD1C", "yfr": "\uD835\uDD36", "YIcy": "\u0407", "yicy": "\u0457", "Yopf": "\uD835\uDD50", "yopf": "\uD835\uDD6A", "Yscr": "\uD835\uDCB4", "yscr": "\uD835\uDCCE", "YUcy": "\u042E", "yucy": "\u044E", "yuml": "\u00FF", "Yuml": "\u0178", "Zacute": "\u0179", "zacute": "\u017A", "Zcaron": "\u017D", "zcaron": "\u017E", "Zcy": "\u0417", "zcy": "\u0437", "Zdot": "\u017B", "zdot": "\u017C", "zeetrf": "\u2128", "ZeroWidthSpace": "\u200B", "Zeta": "\u0396", "zeta": "\u03B6", "zfr": "\uD835\uDD37", "Zfr": "\u2128", "ZHcy": "\u0416", "zhcy": "\u0436", "zigrarr": "\u21DD", "zopf": "\uD835\uDD6B", "Zopf": "\u2124", "Zscr": "\uD835\uDCB5", "zscr": "\uD835\uDCCF", "zwj": "\u200D", "zwnj": "\u200C" }
+
+ },{}],53:[function(require,module,exports){
+ 'use strict';
+
+
+ ////////////////////////////////////////////////////////////////////////////////
+ // Helpers
+
+ // Merge objects
+ //
+ function assign(obj /*from1, from2, from3, ...*/) {
+ var sources = Array.prototype.slice.call(arguments, 1);
+
+ sources.forEach(function (source) {
+ if (!source) { return; }
+
+ Object.keys(source).forEach(function (key) {
+ obj[key] = source[key];
+ });
+ });
+
+ return obj;
+ }
+
+ function _class(obj) { return Object.prototype.toString.call(obj); }
+ function isString(obj) { return _class(obj) === '[object String]'; }
+ function isObject(obj) { return _class(obj) === '[object Object]'; }
+ function isRegExp(obj) { return _class(obj) === '[object RegExp]'; }
+ function isFunction(obj) { return _class(obj) === '[object Function]'; }
+
+
+ function escapeRE(str) { return str.replace(/[.?*+^$[\]\\(){}|-]/g, '\\$&'); }
+
+ ////////////////////////////////////////////////////////////////////////////////
+
+
+ var defaultOptions = {
+ fuzzyLink: true,
+ fuzzyEmail: true,
+ fuzzyIP: false
+ };
+
+
+ function isOptionsObj(obj) {
+ return Object.keys(obj || {}).reduce(function (acc, k) {
+ return acc || defaultOptions.hasOwnProperty(k);
+ }, false);
+ }
+
+
+ var defaultSchemas = {
+ 'http:': {
+ validate: function (text, pos, self) {
+ var tail = text.slice(pos);
+
+ if (!self.re.http) {
+ // compile lazily, because "host"-containing variables can change on tlds update.
+ self.re.http = new RegExp(
+ '^\\/\\/' + self.re.src_auth + self.re.src_host_port_strict + self.re.src_path, 'i'
+ );
+ }
+ if (self.re.http.test(tail)) {
+ return tail.match(self.re.http)[0].length;
+ }
+ return 0;
+ }
+ },
+ 'https:': 'http:',
+ 'ftp:': 'http:',
+ '//': {
+ validate: function (text, pos, self) {
+ var tail = text.slice(pos);
+
+ if (!self.re.no_http) {
+ // compile lazily, because "host"-containing variables can change on tlds update.
+ self.re.no_http = new RegExp(
+ '^' +
+ self.re.src_auth +
+ // Don't allow single-level domains, because of false positives like '//test'
+ // with code comments
+ '(?:localhost|(?:(?:' + self.re.src_domain + ')\\.)+' + self.re.src_domain_root + ')' +
+ self.re.src_port +
+ self.re.src_host_terminator +
+ self.re.src_path,
+
+ 'i'
+ );
+ }
+
+ if (self.re.no_http.test(tail)) {
+ // should not be `://` & `///`, that protects from errors in protocol name
+ if (pos >= 3 && text[pos - 3] === ':') { return 0; }
+ if (pos >= 3 && text[pos - 3] === '/') { return 0; }
+ return tail.match(self.re.no_http)[0].length;
+ }
+ return 0;
+ }
+ },
+ 'mailto:': {
+ validate: function (text, pos, self) {
+ var tail = text.slice(pos);
+
+ if (!self.re.mailto) {
+ self.re.mailto = new RegExp(
+ '^' + self.re.src_email_name + '@' + self.re.src_host_strict, 'i'
+ );
+ }
+ if (self.re.mailto.test(tail)) {
+ return tail.match(self.re.mailto)[0].length;
+ }
+ return 0;
+ }
+ }
+ };
+
+ /*eslint-disable max-len*/
+
+ // RE pattern for 2-character tlds (autogenerated by ./support/tlds_2char_gen.js)
+ var tlds_2ch_src_re = 'a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]';
+
+ // DON'T try to make PRs with changes. Extend TLDs with LinkifyIt.tlds() instead
+ var tlds_default = 'biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф'.split('|');
+
+ /*eslint-enable max-len*/
+
+ ////////////////////////////////////////////////////////////////////////////////
+
+ function resetScanCache(self) {
+ self.__index__ = -1;
+ self.__text_cache__ = '';
+ }
+
+ function createValidator(re) {
+ return function (text, pos) {
+ var tail = text.slice(pos);
+
+ if (re.test(tail)) {
+ return tail.match(re)[0].length;
+ }
+ return 0;
+ };
+ }
+
+ function createNormalizer() {
+ return function (match, self) {
+ self.normalize(match);
+ };
+ }
+
+ // Schemas compiler. Build regexps.
+ //
+ function compile(self) {
+
+ // Load & clone RE patterns.
+ var re = self.re = require('./lib/re')(self.__opts__);
+
+ // Define dynamic patterns
+ var tlds = self.__tlds__.slice();
+
+ self.onCompile();
+
+ if (!self.__tlds_replaced__) {
+ tlds.push(tlds_2ch_src_re);
+ }
+ tlds.push(re.src_xn);
+
+ re.src_tlds = tlds.join('|');
+
+ function untpl(tpl) { return tpl.replace('%TLDS%', re.src_tlds); }
+
+ re.email_fuzzy = RegExp(untpl(re.tpl_email_fuzzy), 'i');
+ re.link_fuzzy = RegExp(untpl(re.tpl_link_fuzzy), 'i');
+ re.link_no_ip_fuzzy = RegExp(untpl(re.tpl_link_no_ip_fuzzy), 'i');
+ re.host_fuzzy_test = RegExp(untpl(re.tpl_host_fuzzy_test), 'i');
+
+ //
+ // Compile each schema
+ //
+
+ var aliases = [];
+
+ self.__compiled__ = {}; // Reset compiled data
+
+ function schemaError(name, val) {
+ throw new Error('(LinkifyIt) Invalid schema "' + name + '": ' + val);
+ }
+
+ Object.keys(self.__schemas__).forEach(function (name) {
+ var val = self.__schemas__[name];
+
+ // skip disabled methods
+ if (val === null) { return; }
+
+ var compiled = { validate: null, link: null };
+
+ self.__compiled__[name] = compiled;
+
+ if (isObject(val)) {
+ if (isRegExp(val.validate)) {
+ compiled.validate = createValidator(val.validate);
+ } else if (isFunction(val.validate)) {
+ compiled.validate = val.validate;
+ } else {
+ schemaError(name, val);
+ }
+
+ if (isFunction(val.normalize)) {
+ compiled.normalize = val.normalize;
+ } else if (!val.normalize) {
+ compiled.normalize = createNormalizer();
+ } else {
+ schemaError(name, val);
+ }
+
+ return;
+ }
+
+ if (isString(val)) {
+ aliases.push(name);
+ return;
+ }
+
+ schemaError(name, val);
+ });
+
+ //
+ // Compile postponed aliases
+ //
+
+ aliases.forEach(function (alias) {
+ if (!self.__compiled__[self.__schemas__[alias]]) {
+ // Silently fail on missed schemas to avoid errons on disable.
+ // schemaError(alias, self.__schemas__[alias]);
+ return;
+ }
+
+ self.__compiled__[alias].validate =
+ self.__compiled__[self.__schemas__[alias]].validate;
+ self.__compiled__[alias].normalize =
+ self.__compiled__[self.__schemas__[alias]].normalize;
+ });
+
+ //
+ // Fake record for guessed links
+ //
+ self.__compiled__[''] = { validate: null, normalize: createNormalizer() };
+
+ //
+ // Build schema condition
+ //
+ var slist = Object.keys(self.__compiled__)
+ .filter(function (name) {
+ // Filter disabled & fake schemas
+ return name.length > 0 && self.__compiled__[name];
+ })
+ .map(escapeRE)
+ .join('|');
+ // (?!_) cause 1.5x slowdown
+ self.re.schema_test = RegExp('(^|(?!_)(?:[><\uff5c]|' + re.src_ZPCc + '))(' + slist + ')', 'i');
+ self.re.schema_search = RegExp('(^|(?!_)(?:[><\uff5c]|' + re.src_ZPCc + '))(' + slist + ')', 'ig');
+
+ self.re.pretest = RegExp(
+ '(' + self.re.schema_test.source + ')|(' + self.re.host_fuzzy_test.source + ')|@',
+ 'i'
+ );
+
+ //
+ // Cleanup
+ //
+
+ resetScanCache(self);
+ }
+
+ /**
+ * class Match
+ *
+ * Match result. Single element of array, returned by [[LinkifyIt#match]]
+ **/
+ function Match(self, shift) {
+ var start = self.__index__,
+ end = self.__last_index__,
+ text = self.__text_cache__.slice(start, end);
+
+ /**
+ * Match#schema -> String
+ *
+ * Prefix (protocol) for matched string.
+ **/
+ this.schema = self.__schema__.toLowerCase();
+ /**
+ * Match#index -> Number
+ *
+ * First position of matched string.
+ **/
+ this.index = start + shift;
+ /**
+ * Match#lastIndex -> Number
+ *
+ * Next position after matched string.
+ **/
+ this.lastIndex = end + shift;
+ /**
+ * Match#raw -> String
+ *
+ * Matched string.
+ **/
+ this.raw = text;
+ /**
+ * Match#text -> String
+ *
+ * Notmalized text of matched string.
+ **/
+ this.text = text;
+ /**
+ * Match#url -> String
+ *
+ * Normalized url of matched string.
+ **/
+ this.url = text;
+ }
+
+ function createMatch(self, shift) {
+ var match = new Match(self, shift);
+
+ self.__compiled__[match.schema].normalize(match, self);
+
+ return match;
+ }
+
+
+ /**
+ * class LinkifyIt
+ **/
+
+ /**
+ * new LinkifyIt(schemas, options)
+ * - schemas (Object): Optional. Additional schemas to validate (prefix/validator)
+ * - options (Object): { fuzzyLink|fuzzyEmail|fuzzyIP: true|false }
+ *
+ * Creates new linkifier instance with optional additional schemas.
+ * Can be called without `new` keyword for convenience.
+ *
+ * By default understands:
+ *
+ * - `http(s)://...` , `ftp://...`, `mailto:...` & `//...` links
+ * - "fuzzy" links and emails (example.com, foo@bar.com).
+ *
+ * `schemas` is an object, where each key/value describes protocol/rule:
+ *
+ * - __key__ - link prefix (usually, protocol name with `:` at the end, `skype:`
+ * for example). `linkify-it` makes shure that prefix is not preceeded with
+ * alphanumeric char and symbols. Only whitespaces and punctuation allowed.
+ * - __value__ - rule to check tail after link prefix
+ * - _String_ - just alias to existing rule
+ * - _Object_
+ * - _validate_ - validator function (should return matched length on success),
+ * or `RegExp`.
+ * - _normalize_ - optional function to normalize text & url of matched result
+ * (for example, for @twitter mentions).
+ *
+ * `options`:
+ *
+ * - __fuzzyLink__ - recognige URL-s without `http(s):` prefix. Default `true`.
+ * - __fuzzyIP__ - allow IPs in fuzzy links above. Can conflict with some texts
+ * like version numbers. Default `false`.
+ * - __fuzzyEmail__ - recognize emails without `mailto:` prefix.
+ *
+ **/
+ function LinkifyIt(schemas, options) {
+ if (!(this instanceof LinkifyIt)) {
+ return new LinkifyIt(schemas, options);
+ }
+
+ if (!options) {
+ if (isOptionsObj(schemas)) {
+ options = schemas;
+ schemas = {};
+ }
+ }
+
+ this.__opts__ = assign({}, defaultOptions, options);
+
+ // Cache last tested result. Used to skip repeating steps on next `match` call.
+ this.__index__ = -1;
+ this.__last_index__ = -1; // Next scan position
+ this.__schema__ = '';
+ this.__text_cache__ = '';
+
+ this.__schemas__ = assign({}, defaultSchemas, schemas);
+ this.__compiled__ = {};
+
+ this.__tlds__ = tlds_default;
+ this.__tlds_replaced__ = false;
+
+ this.re = {};
+
+ compile(this);
+ }
+
+
+ /** chainable
+ * LinkifyIt#add(schema, definition)
+ * - schema (String): rule name (fixed pattern prefix)
+ * - definition (String|RegExp|Object): schema definition
+ *
+ * Add new rule definition. See constructor description for details.
+ **/
+ LinkifyIt.prototype.add = function add(schema, definition) {
+ this.__schemas__[schema] = definition;
+ compile(this);
+ return this;
+ };
+
+
+ /** chainable
+ * LinkifyIt#set(options)
+ * - options (Object): { fuzzyLink|fuzzyEmail|fuzzyIP: true|false }
+ *
+ * Set recognition options for links without schema.
+ **/
+ LinkifyIt.prototype.set = function set(options) {
+ this.__opts__ = assign(this.__opts__, options);
+ return this;
+ };
+
+
+ /**
+ * LinkifyIt#test(text) -> Boolean
+ *
+ * Searches linkifiable pattern and returns `true` on success or `false` on fail.
+ **/
+ LinkifyIt.prototype.test = function test(text) {
+ // Reset scan cache
+ this.__text_cache__ = text;
+ this.__index__ = -1;
+
+ if (!text.length) { return false; }
+
+ var m, ml, me, len, shift, next, re, tld_pos, at_pos;
+
+ // try to scan for link with schema - that's the most simple rule
+ if (this.re.schema_test.test(text)) {
+ re = this.re.schema_search;
+ re.lastIndex = 0;
+ while ((m = re.exec(text)) !== null) {
+ len = this.testSchemaAt(text, m[2], re.lastIndex);
+ if (len) {
+ this.__schema__ = m[2];
+ this.__index__ = m.index + m[1].length;
+ this.__last_index__ = m.index + m[0].length + len;
+ break;
+ }
+ }
+ }
+
+ if (this.__opts__.fuzzyLink && this.__compiled__['http:']) {
+ // guess schemaless links
+ tld_pos = text.search(this.re.host_fuzzy_test);
+ if (tld_pos >= 0) {
+ // if tld is located after found link - no need to check fuzzy pattern
+ if (this.__index__ < 0 || tld_pos < this.__index__) {
+ if ((ml = text.match(this.__opts__.fuzzyIP ? this.re.link_fuzzy : this.re.link_no_ip_fuzzy)) !== null) {
+
+ shift = ml.index + ml[1].length;
+
+ if (this.__index__ < 0 || shift < this.__index__) {
+ this.__schema__ = '';
+ this.__index__ = shift;
+ this.__last_index__ = ml.index + ml[0].length;
+ }
+ }
+ }
+ }
+ }
+
+ if (this.__opts__.fuzzyEmail && this.__compiled__['mailto:']) {
+ // guess schemaless emails
+ at_pos = text.indexOf('@');
+ if (at_pos >= 0) {
+ // We can't skip this check, because this cases are possible:
+ // 192.168.1.1@gmail.com, my.in@example.com
+ if ((me = text.match(this.re.email_fuzzy)) !== null) {
+
+ shift = me.index + me[1].length;
+ next = me.index + me[0].length;
+
+ if (this.__index__ < 0 || shift < this.__index__ ||
+ (shift === this.__index__ && next > this.__last_index__)) {
+ this.__schema__ = 'mailto:';
+ this.__index__ = shift;
+ this.__last_index__ = next;
+ }
+ }
+ }
+ }
+
+ return this.__index__ >= 0;
+ };
+
+
+ /**
+ * LinkifyIt#pretest(text) -> Boolean
+ *
+ * Very quick check, that can give false positives. Returns true if link MAY BE
+ * can exists. Can be used for speed optimization, when you need to check that
+ * link NOT exists.
+ **/
+ LinkifyIt.prototype.pretest = function pretest(text) {
+ return this.re.pretest.test(text);
+ };
+
+
+ /**
+ * LinkifyIt#testSchemaAt(text, name, position) -> Number
+ * - text (String): text to scan
+ * - name (String): rule (schema) name
+ * - position (Number): text offset to check from
+ *
+ * Similar to [[LinkifyIt#test]] but checks only specific protocol tail exactly
+ * at given position. Returns length of found pattern (0 on fail).
+ **/
+ LinkifyIt.prototype.testSchemaAt = function testSchemaAt(text, schema, pos) {
+ // If not supported schema check requested - terminate
+ if (!this.__compiled__[schema.toLowerCase()]) {
+ return 0;
+ }
+ return this.__compiled__[schema.toLowerCase()].validate(text, pos, this);
+ };
+
+
+ /**
+ * LinkifyIt#match(text) -> Array|null
+ *
+ * Returns array of found link descriptions or `null` on fail. We strongly
+ * recommend to use [[LinkifyIt#test]] first, for best speed.
+ *
+ * ##### Result match description
+ *
+ * - __schema__ - link schema, can be empty for fuzzy links, or `//` for
+ * protocol-neutral links.
+ * - __index__ - offset of matched text
+ * - __lastIndex__ - index of next char after mathch end
+ * - __raw__ - matched text
+ * - __text__ - normalized text
+ * - __url__ - link, generated from matched text
+ **/
+ LinkifyIt.prototype.match = function match(text) {
+ var shift = 0, result = [];
+
+ // Try to take previous element from cache, if .test() called before
+ if (this.__index__ >= 0 && this.__text_cache__ === text) {
+ result.push(createMatch(this, shift));
+ shift = this.__last_index__;
+ }
+
+ // Cut head if cache was used
+ var tail = shift ? text.slice(shift) : text;
+
+ // Scan string until end reached
+ while (this.test(tail)) {
+ result.push(createMatch(this, shift));
+
+ tail = tail.slice(this.__last_index__);
+ shift += this.__last_index__;
+ }
+
+ if (result.length) {
+ return result;
+ }
+
+ return null;
+ };
+
+
+ /** chainable
+ * LinkifyIt#tlds(list [, keepOld]) -> this
+ * - list (Array): list of tlds
+ * - keepOld (Boolean): merge with current list if `true` (`false` by default)
+ *
+ * Load (or merge) new tlds list. Those are user for fuzzy links (without prefix)
+ * to avoid false positives. By default this algorythm used:
+ *
+ * - hostname with any 2-letter root zones are ok.
+ * - biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф
+ * are ok.
+ * - encoded (`xn--...`) root zones are ok.
+ *
+ * If list is replaced, then exact match for 2-chars root zones will be checked.
+ **/
+ LinkifyIt.prototype.tlds = function tlds(list, keepOld) {
+ list = Array.isArray(list) ? list : [ list ];
+
+ if (!keepOld) {
+ this.__tlds__ = list.slice();
+ this.__tlds_replaced__ = true;
+ compile(this);
+ return this;
+ }
+
+ this.__tlds__ = this.__tlds__.concat(list)
+ .sort()
+ .filter(function (el, idx, arr) {
+ return el !== arr[idx - 1];
+ })
+ .reverse();
+
+ compile(this);
+ return this;
+ };
+
+ /**
+ * LinkifyIt#normalize(match)
+ *
+ * Default normalizer (if schema does not define it's own).
+ **/
+ LinkifyIt.prototype.normalize = function normalize(match) {
+
+ // Do minimal possible changes by default. Need to collect feedback prior
+ // to move forward https://github.com/markdown-it/linkify-it/issues/1
+
+ if (!match.schema) { match.url = 'http://' + match.url; }
+
+ if (match.schema === 'mailto:' && !/^mailto:/i.test(match.url)) {
+ match.url = 'mailto:' + match.url;
+ }
+ };
+
+
+ /**
+ * LinkifyIt#onCompile()
+ *
+ * Override to modify basic RegExp-s.
+ **/
+ LinkifyIt.prototype.onCompile = function onCompile() {
+ };
+
+
+ module.exports = LinkifyIt;
+
+ },{"./lib/re":54}],54:[function(require,module,exports){
+ 'use strict';
+
+
+ module.exports = function (opts) {
+ var re = {};
+
+ // Use direct extract instead of `regenerate` to reduse browserified size
+ re.src_Any = require('uc.micro/properties/Any/regex').source;
+ re.src_Cc = require('uc.micro/categories/Cc/regex').source;
+ re.src_Z = require('uc.micro/categories/Z/regex').source;
+ re.src_P = require('uc.micro/categories/P/regex').source;
+
+ // \p{\Z\P\Cc\CF} (white spaces + control + format + punctuation)
+ re.src_ZPCc = [ re.src_Z, re.src_P, re.src_Cc ].join('|');
+
+ // \p{\Z\Cc} (white spaces + control)
+ re.src_ZCc = [ re.src_Z, re.src_Cc ].join('|');
+
+ // Experimental. List of chars, completely prohibited in links
+ // because can separate it from other part of text
+ var text_separators = '[><\uff5c]';
+
+ // All possible word characters (everything without punctuation, spaces & controls)
+ // Defined via punctuation & spaces to save space
+ // Should be something like \p{\L\N\S\M} (\w but without `_`)
+ re.src_pseudo_letter = '(?:(?!' + text_separators + '|' + re.src_ZPCc + ')' + re.src_Any + ')';
+ // The same as abothe but without [0-9]
+ // var src_pseudo_letter_non_d = '(?:(?![0-9]|' + src_ZPCc + ')' + src_Any + ')';
+
+ ////////////////////////////////////////////////////////////////////////////////
+
+ re.src_ip4 =
+
+ '(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)';
+
+ // Prohibit any of "@/[]()" in user/pass to avoid wrong domain fetch.
+ re.src_auth = '(?:(?:(?!' + re.src_ZCc + '|[@/\\[\\]()]).)+@)?';
+
+ re.src_port =
+
+ '(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?';
+
+ re.src_host_terminator =
+
+ '(?=$|' + text_separators + '|' + re.src_ZPCc + ')(?!-|_|:\\d|\\.-|\\.(?!$|' + re.src_ZPCc + '))';
+
+ re.src_path =
+
+ '(?:' +
+ '[/?#]' +
+ '(?:' +
+ '(?!' + re.src_ZCc + '|' + text_separators + '|[()[\\]{}.,"\'?!\\-]).|' +
+ '\\[(?:(?!' + re.src_ZCc + '|\\]).)*\\]|' +
+ '\\((?:(?!' + re.src_ZCc + '|[)]).)*\\)|' +
+ '\\{(?:(?!' + re.src_ZCc + '|[}]).)*\\}|' +
+ '\\"(?:(?!' + re.src_ZCc + '|["]).)+\\"|' +
+ "\\'(?:(?!" + re.src_ZCc + "|[']).)+\\'|" +
+ "\\'(?=" + re.src_pseudo_letter + '|[-]).|' + // allow `I'm_king` if no pair found
+ '\\.{2,4}[a-zA-Z0-9%/]|' + // github has ... in commit range links,
+ // google has .... in links (issue #66)
+ // Restrict to
+ // - english
+ // - percent-encoded
+ // - parts of file path
+ // until more examples found.
+ '\\.(?!' + re.src_ZCc + '|[.]).|' +
+ (opts && opts['---'] ?
+ '\\-(?!--(?:[^-]|$))(?:-*)|' // `---` => long dash, terminate
+ :
+ '\\-+|'
+ ) +
+ '\\,(?!' + re.src_ZCc + ').|' + // allow `,,,` in paths
+ '\\!(?!' + re.src_ZCc + '|[!]).|' +
+ '\\?(?!' + re.src_ZCc + '|[?]).' +
+ ')+' +
+ '|\\/' +
+ ')?';
+
+ // Allow anything in markdown spec, forbid quote (") at the first position
+ // because emails enclosed in quotes are far more common
+ re.src_email_name =
+
+ '[\\-;:&=\\+\\$,\\.a-zA-Z0-9_][\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]*';
+
+ re.src_xn =
+
+ 'xn--[a-z0-9\\-]{1,59}';
+
+ // More to read about domain names
+ // http://serverfault.com/questions/638260/
+
+ re.src_domain_root =
+
+ // Allow letters & digits (http://test1)
+ '(?:' +
+ re.src_xn +
+ '|' +
+ re.src_pseudo_letter + '{1,63}' +
+ ')';
+
+ re.src_domain =
+
+ '(?:' +
+ re.src_xn +
+ '|' +
+ '(?:' + re.src_pseudo_letter + ')' +
+ '|' +
+ '(?:' + re.src_pseudo_letter + '(?:-|' + re.src_pseudo_letter + '){0,61}' + re.src_pseudo_letter + ')' +
+ ')';
+
+ re.src_host =
+
+ '(?:' +
+ // Don't need IP check, because digits are already allowed in normal domain names
+ // src_ip4 +
+ // '|' +
+ '(?:(?:(?:' + re.src_domain + ')\\.)*' + re.src_domain/*_root*/ + ')' +
+ ')';
+
+ re.tpl_host_fuzzy =
+
+ '(?:' +
+ re.src_ip4 +
+ '|' +
+ '(?:(?:(?:' + re.src_domain + ')\\.)+(?:%TLDS%))' +
+ ')';
+
+ re.tpl_host_no_ip_fuzzy =
+
+ '(?:(?:(?:' + re.src_domain + ')\\.)+(?:%TLDS%))';
+
+ re.src_host_strict =
+
+ re.src_host + re.src_host_terminator;
+
+ re.tpl_host_fuzzy_strict =
+
+ re.tpl_host_fuzzy + re.src_host_terminator;
+
+ re.src_host_port_strict =
+
+ re.src_host + re.src_port + re.src_host_terminator;
+
+ re.tpl_host_port_fuzzy_strict =
+
+ re.tpl_host_fuzzy + re.src_port + re.src_host_terminator;
+
+ re.tpl_host_port_no_ip_fuzzy_strict =
+
+ re.tpl_host_no_ip_fuzzy + re.src_port + re.src_host_terminator;
+
+
+ ////////////////////////////////////////////////////////////////////////////////
+ // Main rules
+
+ // Rude test fuzzy links by host, for quick deny
+ re.tpl_host_fuzzy_test =
+
+ 'localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:' + re.src_ZPCc + '|>|$))';
+
+ re.tpl_email_fuzzy =
+
+ '(^|' + text_separators + '|"|\\(|' + re.src_ZCc + ')' +
+ '(' + re.src_email_name + '@' + re.tpl_host_fuzzy_strict + ')';
+
+ re.tpl_link_fuzzy =
+ // Fuzzy link can't be prepended with .:/\- and non punctuation.
+ // but can start with > (markdown blockquote)
+ '(^|(?![.:/\\-_@])(?:[$+<=>^`|\uff5c]|' + re.src_ZPCc + '))' +
+ '((?![$+<=>^`|\uff5c])' + re.tpl_host_port_fuzzy_strict + re.src_path + ')';
+
+ re.tpl_link_no_ip_fuzzy =
+ // Fuzzy link can't be prepended with .:/\- and non punctuation.
+ // but can start with > (markdown blockquote)
+ '(^|(?![.:/\\-_@])(?:[$+<=>^`|\uff5c]|' + re.src_ZPCc + '))' +
+ '((?![$+<=>^`|\uff5c])' + re.tpl_host_port_no_ip_fuzzy_strict + re.src_path + ')';
+
+ return re;
+ };
+
+ },{"uc.micro/categories/Cc/regex":61,"uc.micro/categories/P/regex":63,"uc.micro/categories/Z/regex":64,"uc.micro/properties/Any/regex":66}],55:[function(require,module,exports){
+
+ 'use strict';
+
+
+ /* eslint-disable no-bitwise */
+
+ var decodeCache = {};
+
+ function getDecodeCache(exclude) {
+ var i, ch, cache = decodeCache[exclude];
+ if (cache) { return cache; }
+
+ cache = decodeCache[exclude] = [];
+
+ for (i = 0; i < 128; i++) {
+ ch = String.fromCharCode(i);
+ cache.push(ch);
+ }
+
+ for (i = 0; i < exclude.length; i++) {
+ ch = exclude.charCodeAt(i);
+ cache[ch] = '%' + ('0' + ch.toString(16).toUpperCase()).slice(-2);
+ }
+
+ return cache;
+ }
+
+
+ // Decode percent-encoded string.
+ //
+ function decode(string, exclude) {
+ var cache;
+
+ if (typeof exclude !== 'string') {
+ exclude = decode.defaultChars;
+ }
+
+ cache = getDecodeCache(exclude);
+
+ return string.replace(/(%[a-f0-9]{2})+/gi, function(seq) {
+ var i, l, b1, b2, b3, b4, chr,
+ result = '';
+
+ for (i = 0, l = seq.length; i < l; i += 3) {
+ b1 = parseInt(seq.slice(i + 1, i + 3), 16);
+
+ if (b1 < 0x80) {
+ result += cache[b1];
+ continue;
+ }
+
+ if ((b1 & 0xE0) === 0xC0 && (i + 3 < l)) {
+ // 110xxxxx 10xxxxxx
+ b2 = parseInt(seq.slice(i + 4, i + 6), 16);
+
+ if ((b2 & 0xC0) === 0x80) {
+ chr = ((b1 << 6) & 0x7C0) | (b2 & 0x3F);
+
+ if (chr < 0x80) {
+ result += '\ufffd\ufffd';
+ } else {
+ result += String.fromCharCode(chr);
+ }
+
+ i += 3;
+ continue;
+ }
+ }
+
+ if ((b1 & 0xF0) === 0xE0 && (i + 6 < l)) {
+ // 1110xxxx 10xxxxxx 10xxxxxx
+ b2 = parseInt(seq.slice(i + 4, i + 6), 16);
+ b3 = parseInt(seq.slice(i + 7, i + 9), 16);
+
+ if ((b2 & 0xC0) === 0x80 && (b3 & 0xC0) === 0x80) {
+ chr = ((b1 << 12) & 0xF000) | ((b2 << 6) & 0xFC0) | (b3 & 0x3F);
+
+ if (chr < 0x800 || (chr >= 0xD800 && chr <= 0xDFFF)) {
+ result += '\ufffd\ufffd\ufffd';
+ } else {
+ result += String.fromCharCode(chr);
+ }
+
+ i += 6;
+ continue;
+ }
+ }
+
+ if ((b1 & 0xF8) === 0xF0 && (i + 9 < l)) {
+ // 111110xx 10xxxxxx 10xxxxxx 10xxxxxx
+ b2 = parseInt(seq.slice(i + 4, i + 6), 16);
+ b3 = parseInt(seq.slice(i + 7, i + 9), 16);
+ b4 = parseInt(seq.slice(i + 10, i + 12), 16);
+
+ if ((b2 & 0xC0) === 0x80 && (b3 & 0xC0) === 0x80 && (b4 & 0xC0) === 0x80) {
+ chr = ((b1 << 18) & 0x1C0000) | ((b2 << 12) & 0x3F000) | ((b3 << 6) & 0xFC0) | (b4 & 0x3F);
+
+ if (chr < 0x10000 || chr > 0x10FFFF) {
+ result += '\ufffd\ufffd\ufffd\ufffd';
+ } else {
+ chr -= 0x10000;
+ result += String.fromCharCode(0xD800 + (chr >> 10), 0xDC00 + (chr & 0x3FF));
+ }
+
+ i += 9;
+ continue;
+ }
+ }
+
+ result += '\ufffd';
+ }
+
+ return result;
+ });
+ }
+
+
+ decode.defaultChars = ';/?:@&=+$,#';
+ decode.componentChars = '';
+
+
+ module.exports = decode;
+
+ },{}],56:[function(require,module,exports){
+
+ 'use strict';
+
+
+ var encodeCache = {};
+
+
+ // Create a lookup array where anything but characters in `chars` string
+ // and alphanumeric chars is percent-encoded.
+ //
+ function getEncodeCache(exclude) {
+ var i, ch, cache = encodeCache[exclude];
+ if (cache) { return cache; }
+
+ cache = encodeCache[exclude] = [];
+
+ for (i = 0; i < 128; i++) {
+ ch = String.fromCharCode(i);
+
+ if (/^[0-9a-z]$/i.test(ch)) {
+ // always allow unencoded alphanumeric characters
+ cache.push(ch);
+ } else {
+ cache.push('%' + ('0' + i.toString(16).toUpperCase()).slice(-2));
+ }
+ }
+
+ for (i = 0; i < exclude.length; i++) {
+ cache[exclude.charCodeAt(i)] = exclude[i];
+ }
+
+ return cache;
+ }
+
+
+ // Encode unsafe characters with percent-encoding, skipping already
+ // encoded sequences.
+ //
+ // - string - string to encode
+ // - exclude - list of characters to ignore (in addition to a-zA-Z0-9)
+ // - keepEscaped - don't encode '%' in a correct escape sequence (default: true)
+ //
+ function encode(string, exclude, keepEscaped) {
+ var i, l, code, nextCode, cache,
+ result = '';
+
+ if (typeof exclude !== 'string') {
+ // encode(string, keepEscaped)
+ keepEscaped = exclude;
+ exclude = encode.defaultChars;
+ }
+
+ if (typeof keepEscaped === 'undefined') {
+ keepEscaped = true;
+ }
+
+ cache = getEncodeCache(exclude);
+
+ for (i = 0, l = string.length; i < l; i++) {
+ code = string.charCodeAt(i);
+
+ if (keepEscaped && code === 0x25 /* % */ && i + 2 < l) {
+ if (/^[0-9a-f]{2}$/i.test(string.slice(i + 1, i + 3))) {
+ result += string.slice(i, i + 3);
+ i += 2;
+ continue;
+ }
+ }
+
+ if (code < 128) {
+ result += cache[code];
+ continue;
+ }
+
+ if (code >= 0xD800 && code <= 0xDFFF) {
+ if (code >= 0xD800 && code <= 0xDBFF && i + 1 < l) {
+ nextCode = string.charCodeAt(i + 1);
+ if (nextCode >= 0xDC00 && nextCode <= 0xDFFF) {
+ result += encodeURIComponent(string[i] + string[i + 1]);
+ i++;
+ continue;
+ }
+ }
+ result += '%EF%BF%BD';
+ continue;
+ }
+
+ result += encodeURIComponent(string[i]);
+ }
+
+ return result;
+ }
+
+ encode.defaultChars = ";/?:@&=+$,-_.!~*'()#";
+ encode.componentChars = "-_.!~*'()";
+
+
+ module.exports = encode;
+
+ },{}],57:[function(require,module,exports){
+
+ 'use strict';
+
+
+ module.exports = function format(url) {
+ var result = '';
+
+ result += url.protocol || '';
+ result += url.slashes ? '//' : '';
+ result += url.auth ? url.auth + '@' : '';
+
+ if (url.hostname && url.hostname.indexOf(':') !== -1) {
+ // ipv6 address
+ result += '[' + url.hostname + ']';
+ } else {
+ result += url.hostname || '';
+ }
+
+ result += url.port ? ':' + url.port : '';
+ result += url.pathname || '';
+ result += url.search || '';
+ result += url.hash || '';
+
+ return result;
+ };
+
+ },{}],58:[function(require,module,exports){
+ 'use strict';
+
+
+ module.exports.encode = require('./encode');
+ module.exports.decode = require('./decode');
+ module.exports.format = require('./format');
+ module.exports.parse = require('./parse');
+
+ },{"./decode":55,"./encode":56,"./format":57,"./parse":59}],59:[function(require,module,exports){
+ // Copyright Joyent, Inc. and other Node contributors.
+ //
+ // Permission is hereby granted, free of charge, to any person obtaining a
+ // copy of this software and associated documentation files (the
+ // "Software"), to deal in the Software without restriction, including
+ // without limitation the rights to use, copy, modify, merge, publish,
+ // distribute, sublicense, and/or sell copies of the Software, and to permit
+ // persons to whom the Software is furnished to do so, subject to the
+ // following conditions:
+ //
+ // The above copyright notice and this permission notice shall be included
+ // in all copies or substantial portions of the Software.
+ //
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
+ // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+ // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+ // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
+ // USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+ 'use strict';
+
+ //
+ // Changes from joyent/node:
+ //
+ // 1. No leading slash in paths,
+ // e.g. in `url.parse('http://foo?bar')` pathname is ``, not `/`
+ //
+ // 2. Backslashes are not replaced with slashes,
+ // so `http:\\example.org\` is treated like a relative path
+ //
+ // 3. Trailing colon is treated like a part of the path,
+ // i.e. in `http://example.org:foo` pathname is `:foo`
+ //
+ // 4. Nothing is URL-encoded in the resulting object,
+ // (in joyent/node some chars in auth and paths are encoded)
+ //
+ // 5. `url.parse()` does not have `parseQueryString` argument
+ //
+ // 6. Removed extraneous result properties: `host`, `path`, `query`, etc.,
+ // which can be constructed using other parts of the url.
+ //
+
+
+ function Url() {
+ this.protocol = null;
+ this.slashes = null;
+ this.auth = null;
+ this.port = null;
+ this.hostname = null;
+ this.hash = null;
+ this.search = null;
+ this.pathname = null;
+ }
+
+ // Reference: RFC 3986, RFC 1808, RFC 2396
+
+ // define these here so at least they only have to be
+ // compiled once on the first module load.
+ var protocolPattern = /^([a-z0-9.+-]+:)/i,
+ portPattern = /:[0-9]*$/,
+
+ // Special case for a simple path URL
+ simplePathPattern = /^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,
+
+ // RFC 2396: characters reserved for delimiting URLs.
+ // We actually just auto-escape these.
+ delims = [ '<', '>', '"', '`', ' ', '\r', '\n', '\t' ],
+
+ // RFC 2396: characters not allowed for various reasons.
+ unwise = [ '{', '}', '|', '\\', '^', '`' ].concat(delims),
+
+ // Allowed by RFCs, but cause of XSS attacks. Always escape these.
+ autoEscape = [ '\'' ].concat(unwise),
+ // Characters that are never ever allowed in a hostname.
+ // Note that any invalid chars are also handled, but these
+ // are the ones that are *expected* to be seen, so we fast-path
+ // them.
+ nonHostChars = [ '%', '/', '?', ';', '#' ].concat(autoEscape),
+ hostEndingChars = [ '/', '?', '#' ],
+ hostnameMaxLen = 255,
+ hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/,
+ hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/,
+ // protocols that can allow "unsafe" and "unwise" chars.
+ /* eslint-disable no-script-url */
+ // protocols that never have a hostname.
+ hostlessProtocol = {
+ 'javascript': true,
+ 'javascript:': true
+ },
+ // protocols that always contain a // bit.
+ slashedProtocol = {
+ 'http': true,
+ 'https': true,
+ 'ftp': true,
+ 'gopher': true,
+ 'file': true,
+ 'http:': true,
+ 'https:': true,
+ 'ftp:': true,
+ 'gopher:': true,
+ 'file:': true
+ };
+ /* eslint-enable no-script-url */
+
+ function urlParse(url, slashesDenoteHost) {
+ if (url && url instanceof Url) { return url; }
+
+ var u = new Url();
+ u.parse(url, slashesDenoteHost);
+ return u;
+ }
+
+ Url.prototype.parse = function(url, slashesDenoteHost) {
+ var i, l, lowerProto, hec, slashes,
+ rest = url;
+
+ // trim before proceeding.
+ // This is to support parse stuff like " http://foo.com \n"
+ rest = rest.trim();
+
+ if (!slashesDenoteHost && url.split('#').length === 1) {
+ // Try fast path regexp
+ var simplePath = simplePathPattern.exec(rest);
+ if (simplePath) {
+ this.pathname = simplePath[1];
+ if (simplePath[2]) {
+ this.search = simplePath[2];
+ }
+ return this;
+ }
+ }
+
+ var proto = protocolPattern.exec(rest);
+ if (proto) {
+ proto = proto[0];
+ lowerProto = proto.toLowerCase();
+ this.protocol = proto;
+ rest = rest.substr(proto.length);
+ }
+
+ // figure out if it's got a host
+ // user@server is *always* interpreted as a hostname, and url
+ // resolution will treat //foo/bar as host=foo,path=bar because that's
+ // how the browser resolves relative URLs.
+ if (slashesDenoteHost || proto || rest.match(/^\/\/[^@\/]+@[^@\/]+/)) {
+ slashes = rest.substr(0, 2) === '//';
+ if (slashes && !(proto && hostlessProtocol[proto])) {
+ rest = rest.substr(2);
+ this.slashes = true;
+ }
+ }
+
+ if (!hostlessProtocol[proto] &&
+ (slashes || (proto && !slashedProtocol[proto]))) {
+
+ // there's a hostname.
+ // the first instance of /, ?, ;, or # ends the host.
+ //
+ // If there is an @ in the hostname, then non-host chars *are* allowed
+ // to the left of the last @ sign, unless some host-ending character
+ // comes *before* the @-sign.
+ // URLs are obnoxious.
+ //
+ // ex:
+ // http://a@b@c/ => user:a@b host:c
+ // http://a@b?@c => user:a host:c path:/?@c
+
+ // v0.12 TODO(isaacs): This is not quite how Chrome does things.
+ // Review our test case against browsers more comprehensively.
+
+ // find the first instance of any hostEndingChars
+ var hostEnd = -1;
+ for (i = 0; i < hostEndingChars.length; i++) {
+ hec = rest.indexOf(hostEndingChars[i]);
+ if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) {
+ hostEnd = hec;
+ }
+ }
+
+ // at this point, either we have an explicit point where the
+ // auth portion cannot go past, or the last @ char is the decider.
+ var auth, atSign;
+ if (hostEnd === -1) {
+ // atSign can be anywhere.
+ atSign = rest.lastIndexOf('@');
+ } else {
+ // atSign must be in auth portion.
+ // http://a@b/c@d => host:b auth:a path:/c@d
+ atSign = rest.lastIndexOf('@', hostEnd);
+ }
+
+ // Now we have a portion which is definitely the auth.
+ // Pull that off.
+ if (atSign !== -1) {
+ auth = rest.slice(0, atSign);
+ rest = rest.slice(atSign + 1);
+ this.auth = auth;
+ }
+
+ // the host is the remaining to the left of the first non-host char
+ hostEnd = -1;
+ for (i = 0; i < nonHostChars.length; i++) {
+ hec = rest.indexOf(nonHostChars[i]);
+ if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) {
+ hostEnd = hec;
+ }
+ }
+ // if we still have not hit it, then the entire thing is a host.
+ if (hostEnd === -1) {
+ hostEnd = rest.length;
+ }
+
+ if (rest[hostEnd - 1] === ':') { hostEnd--; }
+ var host = rest.slice(0, hostEnd);
+ rest = rest.slice(hostEnd);
+
+ // pull out port.
+ this.parseHost(host);
+
+ // we've indicated that there is a hostname,
+ // so even if it's empty, it has to be present.
+ this.hostname = this.hostname || '';
+
+ // if hostname begins with [ and ends with ]
+ // assume that it's an IPv6 address.
+ var ipv6Hostname = this.hostname[0] === '[' &&
+ this.hostname[this.hostname.length - 1] === ']';
+
+ // validate a little.
+ if (!ipv6Hostname) {
+ var hostparts = this.hostname.split(/\./);
+ for (i = 0, l = hostparts.length; i < l; i++) {
+ var part = hostparts[i];
+ if (!part) { continue; }
+ if (!part.match(hostnamePartPattern)) {
+ var newpart = '';
+ for (var j = 0, k = part.length; j < k; j++) {
+ if (part.charCodeAt(j) > 127) {
+ // we replace non-ASCII char with a temporary placeholder
+ // we need this to make sure size of hostname is not
+ // broken by replacing non-ASCII by nothing
+ newpart += 'x';
+ } else {
+ newpart += part[j];
+ }
+ }
+ // we test again with ASCII char only
+ if (!newpart.match(hostnamePartPattern)) {
+ var validParts = hostparts.slice(0, i);
+ var notHost = hostparts.slice(i + 1);
+ var bit = part.match(hostnamePartStart);
+ if (bit) {
+ validParts.push(bit[1]);
+ notHost.unshift(bit[2]);
+ }
+ if (notHost.length) {
+ rest = notHost.join('.') + rest;
+ }
+ this.hostname = validParts.join('.');
+ break;
+ }
+ }
+ }
+ }
+
+ if (this.hostname.length > hostnameMaxLen) {
+ this.hostname = '';
+ }
+
+ // strip [ and ] from the hostname
+ // the host field still retains them, though
+ if (ipv6Hostname) {
+ this.hostname = this.hostname.substr(1, this.hostname.length - 2);
+ }
+ }
+
+ // chop off from the tail first.
+ var hash = rest.indexOf('#');
+ if (hash !== -1) {
+ // got a fragment string.
+ this.hash = rest.substr(hash);
+ rest = rest.slice(0, hash);
+ }
+ var qm = rest.indexOf('?');
+ if (qm !== -1) {
+ this.search = rest.substr(qm);
+ rest = rest.slice(0, qm);
+ }
+ if (rest) { this.pathname = rest; }
+ if (slashedProtocol[lowerProto] &&
+ this.hostname && !this.pathname) {
+ this.pathname = '';
+ }
+
+ return this;
+ };
+
+ Url.prototype.parseHost = function(host) {
+ var port = portPattern.exec(host);
+ if (port) {
+ port = port[0];
+ if (port !== ':') {
+ this.port = port.substr(1);
+ }
+ host = host.substr(0, host.length - port.length);
+ }
+ if (host) { this.hostname = host; }
+ };
+
+ module.exports = urlParse;
+
+ },{}],60:[function(require,module,exports){
+ (function (global){
+ /*! https://mths.be/punycode v1.4.1 by @mathias */
+ ;(function(root) {
+
+ /** Detect free variables */
+ var freeExports = typeof exports == 'object' && exports &&
+ !exports.nodeType && exports;
+ var freeModule = typeof module == 'object' && module &&
+ !module.nodeType && module;
+ var freeGlobal = typeof global == 'object' && global;
+ if (
+ freeGlobal.global === freeGlobal ||
+ freeGlobal.window === freeGlobal ||
+ freeGlobal.self === freeGlobal
+ ) {
+ root = freeGlobal;
+ }
+
+ /**
+ * The `punycode` object.
+ * @name punycode
+ * @type Object
+ */
+ var punycode,
+
+ /** Highest positive signed 32-bit float value */
+ maxInt = 2147483647, // aka. 0x7FFFFFFF or 2^31-1
+
+ /** Bootstring parameters */
+ base = 36,
+ tMin = 1,
+ tMax = 26,
+ skew = 38,
+ damp = 700,
+ initialBias = 72,
+ initialN = 128, // 0x80
+ delimiter = '-', // '\x2D'
+
+ /** Regular expressions */
+ regexPunycode = /^xn--/,
+ regexNonASCII = /[^\x20-\x7E]/, // unprintable ASCII chars + non-ASCII chars
+ regexSeparators = /[\x2E\u3002\uFF0E\uFF61]/g, // RFC 3490 separators
+
+ /** Error messages */
+ errors = {
+ 'overflow': 'Overflow: input needs wider integers to process',
+ 'not-basic': 'Illegal input >= 0x80 (not a basic code point)',
+ 'invalid-input': 'Invalid input'
+ },
+
+ /** Convenience shortcuts */
+ baseMinusTMin = base - tMin,
+ floor = Math.floor,
+ stringFromCharCode = String.fromCharCode,
+
+ /** Temporary variable */
+ key;
+
+ /*--------------------------------------------------------------------------*/
+
+ /**
+ * A generic error utility function.
+ * @private
+ * @param {String} type The error type.
+ * @returns {Error} Throws a `RangeError` with the applicable error message.
+ */
+ function error(type) {
+ throw new RangeError(errors[type]);
+ }
+
+ /**
+ * A generic `Array#map` utility function.
+ * @private
+ * @param {Array} array The array to iterate over.
+ * @param {Function} callback The function that gets called for every array
+ * item.
+ * @returns {Array} A new array of values returned by the callback function.
+ */
+ function map(array, fn) {
+ var length = array.length;
+ var result = [];
+ while (length--) {
+ result[length] = fn(array[length]);
+ }
+ return result;
+ }
+
+ /**
+ * A simple `Array#map`-like wrapper to work with domain name strings or email
+ * addresses.
+ * @private
+ * @param {String} domain The domain name or email address.
+ * @param {Function} callback The function that gets called for every
+ * character.
+ * @returns {Array} A new string of characters returned by the callback
+ * function.
+ */
+ function mapDomain(string, fn) {
+ var parts = string.split('@');
+ var result = '';
+ if (parts.length > 1) {
+ // In email addresses, only the domain name should be punycoded. Leave
+ // the local part (i.e. everything up to `@`) intact.
+ result = parts[0] + '@';
+ string = parts[1];
+ }
+ // Avoid `split(regex)` for IE8 compatibility. See #17.
+ string = string.replace(regexSeparators, '\x2E');
+ var labels = string.split('.');
+ var encoded = map(labels, fn).join('.');
+ return result + encoded;
+ }
+
+ /**
+ * Creates an array containing the numeric code points of each Unicode
+ * character in the string. While JavaScript uses UCS-2 internally,
+ * this function will convert a pair of surrogate halves (each of which
+ * UCS-2 exposes as separate characters) into a single code point,
+ * matching UTF-16.
+ * @see `punycode.ucs2.encode`
+ * @see
+ * @memberOf punycode.ucs2
+ * @name decode
+ * @param {String} string The Unicode input string (UCS-2).
+ * @returns {Array} The new array of code points.
+ */
+ function ucs2decode(string) {
+ var output = [],
+ counter = 0,
+ length = string.length,
+ value,
+ extra;
+ while (counter < length) {
+ value = string.charCodeAt(counter++);
+ if (value >= 0xD800 && value <= 0xDBFF && counter < length) {
+ // high surrogate, and there is a next character
+ extra = string.charCodeAt(counter++);
+ if ((extra & 0xFC00) == 0xDC00) { // low surrogate
+ output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000);
+ } else {
+ // unmatched surrogate; only append this code unit, in case the next
+ // code unit is the high surrogate of a surrogate pair
+ output.push(value);
+ counter--;
+ }
+ } else {
+ output.push(value);
+ }
+ }
+ return output;
+ }
+
+ /**
+ * Creates a string based on an array of numeric code points.
+ * @see `punycode.ucs2.decode`
+ * @memberOf punycode.ucs2
+ * @name encode
+ * @param {Array} codePoints The array of numeric code points.
+ * @returns {String} The new Unicode string (UCS-2).
+ */
+ function ucs2encode(array) {
+ return map(array, function(value) {
+ var output = '';
+ if (value > 0xFFFF) {
+ value -= 0x10000;
+ output += stringFromCharCode(value >>> 10 & 0x3FF | 0xD800);
+ value = 0xDC00 | value & 0x3FF;
+ }
+ output += stringFromCharCode(value);
+ return output;
+ }).join('');
+ }
+
+ /**
+ * Converts a basic code point into a digit/integer.
+ * @see `digitToBasic()`
+ * @private
+ * @param {Number} codePoint The basic numeric code point value.
+ * @returns {Number} The numeric value of a basic code point (for use in
+ * representing integers) in the range `0` to `base - 1`, or `base` if
+ * the code point does not represent a value.
+ */
+ function basicToDigit(codePoint) {
+ if (codePoint - 48 < 10) {
+ return codePoint - 22;
+ }
+ if (codePoint - 65 < 26) {
+ return codePoint - 65;
+ }
+ if (codePoint - 97 < 26) {
+ return codePoint - 97;
+ }
+ return base;
+ }
+
+ /**
+ * Converts a digit/integer into a basic code point.
+ * @see `basicToDigit()`
+ * @private
+ * @param {Number} digit The numeric value of a basic code point.
+ * @returns {Number} The basic code point whose value (when used for
+ * representing integers) is `digit`, which needs to be in the range
+ * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is
+ * used; else, the lowercase form is used. The behavior is undefined
+ * if `flag` is non-zero and `digit` has no uppercase form.
+ */
+ function digitToBasic(digit, flag) {
+ // 0..25 map to ASCII a..z or A..Z
+ // 26..35 map to ASCII 0..9
+ return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5);
+ }
+
+ /**
+ * Bias adaptation function as per section 3.4 of RFC 3492.
+ * https://tools.ietf.org/html/rfc3492#section-3.4
+ * @private
+ */
+ function adapt(delta, numPoints, firstTime) {
+ var k = 0;
+ delta = firstTime ? floor(delta / damp) : delta >> 1;
+ delta += floor(delta / numPoints);
+ for (/* no initialization */; delta > baseMinusTMin * tMax >> 1; k += base) {
+ delta = floor(delta / baseMinusTMin);
+ }
+ return floor(k + (baseMinusTMin + 1) * delta / (delta + skew));
+ }
+
+ /**
+ * Converts a Punycode string of ASCII-only symbols to a string of Unicode
+ * symbols.
+ * @memberOf punycode
+ * @param {String} input The Punycode string of ASCII-only symbols.
+ * @returns {String} The resulting string of Unicode symbols.
+ */
+ function decode(input) {
+ // Don't use UCS-2
+ var output = [],
+ inputLength = input.length,
+ out,
+ i = 0,
+ n = initialN,
+ bias = initialBias,
+ basic,
+ j,
+ index,
+ oldi,
+ w,
+ k,
+ digit,
+ t,
+ /** Cached calculation results */
+ baseMinusT;
+
+ // Handle the basic code points: let `basic` be the number of input code
+ // points before the last delimiter, or `0` if there is none, then copy
+ // the first basic code points to the output.
+
+ basic = input.lastIndexOf(delimiter);
+ if (basic < 0) {
+ basic = 0;
+ }
+
+ for (j = 0; j < basic; ++j) {
+ // if it's not a basic code point
+ if (input.charCodeAt(j) >= 0x80) {
+ error('not-basic');
+ }
+ output.push(input.charCodeAt(j));
+ }
+
+ // Main decoding loop: start just after the last delimiter if any basic code
+ // points were copied; start at the beginning otherwise.
+
+ for (index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */) {
+
+ // `index` is the index of the next character to be consumed.
+ // Decode a generalized variable-length integer into `delta`,
+ // which gets added to `i`. The overflow checking is easier
+ // if we increase `i` as we go, then subtract off its starting
+ // value at the end to obtain `delta`.
+ for (oldi = i, w = 1, k = base; /* no condition */; k += base) {
+
+ if (index >= inputLength) {
+ error('invalid-input');
+ }
+
+ digit = basicToDigit(input.charCodeAt(index++));
+
+ if (digit >= base || digit > floor((maxInt - i) / w)) {
+ error('overflow');
+ }
+
+ i += digit * w;
+ t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);
+
+ if (digit < t) {
+ break;
+ }
+
+ baseMinusT = base - t;
+ if (w > floor(maxInt / baseMinusT)) {
+ error('overflow');
+ }
+
+ w *= baseMinusT;
+
+ }
+
+ out = output.length + 1;
+ bias = adapt(i - oldi, out, oldi == 0);
+
+ // `i` was supposed to wrap around from `out` to `0`,
+ // incrementing `n` each time, so we'll fix that now:
+ if (floor(i / out) > maxInt - n) {
+ error('overflow');
+ }
+
+ n += floor(i / out);
+ i %= out;
+
+ // Insert `n` at position `i` of the output
+ output.splice(i++, 0, n);
+
+ }
+
+ return ucs2encode(output);
+ }
+
+ /**
+ * Converts a string of Unicode symbols (e.g. a domain name label) to a
+ * Punycode string of ASCII-only symbols.
+ * @memberOf punycode
+ * @param {String} input The string of Unicode symbols.
+ * @returns {String} The resulting Punycode string of ASCII-only symbols.
+ */
+ function encode(input) {
+ var n,
+ delta,
+ handledCPCount,
+ basicLength,
+ bias,
+ j,
+ m,
+ q,
+ k,
+ t,
+ currentValue,
+ output = [],
+ /** `inputLength` will hold the number of code points in `input`. */
+ inputLength,
+ /** Cached calculation results */
+ handledCPCountPlusOne,
+ baseMinusT,
+ qMinusT;
+
+ // Convert the input in UCS-2 to Unicode
+ input = ucs2decode(input);
+
+ // Cache the length
+ inputLength = input.length;
+
+ // Initialize the state
+ n = initialN;
+ delta = 0;
+ bias = initialBias;
+
+ // Handle the basic code points
+ for (j = 0; j < inputLength; ++j) {
+ currentValue = input[j];
+ if (currentValue < 0x80) {
+ output.push(stringFromCharCode(currentValue));
+ }
+ }
+
+ handledCPCount = basicLength = output.length;
+
+ // `handledCPCount` is the number of code points that have been handled;
+ // `basicLength` is the number of basic code points.
+
+ // Finish the basic string - if it is not empty - with a delimiter
+ if (basicLength) {
+ output.push(delimiter);
+ }
+
+ // Main encoding loop:
+ while (handledCPCount < inputLength) {
+
+ // All non-basic code points < n have been handled already. Find the next
+ // larger one:
+ for (m = maxInt, j = 0; j < inputLength; ++j) {
+ currentValue = input[j];
+ if (currentValue >= n && currentValue < m) {
+ m = currentValue;
+ }
+ }
+
+ // Increase `delta` enough to advance the decoder's state to ,
+ // but guard against overflow
+ handledCPCountPlusOne = handledCPCount + 1;
+ if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) {
+ error('overflow');
+ }
+
+ delta += (m - n) * handledCPCountPlusOne;
+ n = m;
+
+ for (j = 0; j < inputLength; ++j) {
+ currentValue = input[j];
+
+ if (currentValue < n && ++delta > maxInt) {
+ error('overflow');
+ }
+
+ if (currentValue == n) {
+ // Represent delta as a generalized variable-length integer
+ for (q = delta, k = base; /* no condition */; k += base) {
+ t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);
+ if (q < t) {
+ break;
+ }
+ qMinusT = q - t;
+ baseMinusT = base - t;
+ output.push(
+ stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0))
+ );
+ q = floor(qMinusT / baseMinusT);
+ }
+
+ output.push(stringFromCharCode(digitToBasic(q, 0)));
+ bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength);
+ delta = 0;
+ ++handledCPCount;
+ }
+ }
+
+ ++delta;
+ ++n;
+
+ }
+ return output.join('');
+ }
+
+ /**
+ * Converts a Punycode string representing a domain name or an email address
+ * to Unicode. Only the Punycoded parts of the input will be converted, i.e.
+ * it doesn't matter if you call it on a string that has already been
+ * converted to Unicode.
+ * @memberOf punycode
+ * @param {String} input The Punycoded domain name or email address to
+ * convert to Unicode.
+ * @returns {String} The Unicode representation of the given Punycode
+ * string.
+ */
+ function toUnicode(input) {
+ return mapDomain(input, function(string) {
+ return regexPunycode.test(string)
+ ? decode(string.slice(4).toLowerCase())
+ : string;
+ });
+ }
+
+ /**
+ * Converts a Unicode string representing a domain name or an email address to
+ * Punycode. Only the non-ASCII parts of the domain name will be converted,
+ * i.e. it doesn't matter if you call it with a domain that's already in
+ * ASCII.
+ * @memberOf punycode
+ * @param {String} input The domain name or email address to convert, as a
+ * Unicode string.
+ * @returns {String} The Punycode representation of the given domain name or
+ * email address.
+ */
+ function toASCII(input) {
+ return mapDomain(input, function(string) {
+ return regexNonASCII.test(string)
+ ? 'xn--' + encode(string)
+ : string;
+ });
+ }
+
+ /*--------------------------------------------------------------------------*/
+
+ /** Define the public API */
+ punycode = {
+ /**
+ * A string representing the current Punycode.js version number.
+ * @memberOf punycode
+ * @type String
+ */
+ 'version': '1.4.1',
+ /**
+ * An object of methods to convert from JavaScript's internal character
+ * representation (UCS-2) to Unicode code points, and back.
+ * @see
+ * @memberOf punycode
+ * @type Object
+ */
+ 'ucs2': {
+ 'decode': ucs2decode,
+ 'encode': ucs2encode
+ },
+ 'decode': decode,
+ 'encode': encode,
+ 'toASCII': toASCII,
+ 'toUnicode': toUnicode
+ };
+
+ /** Expose `punycode` */
+ // Some AMD build optimizers, like r.js, check for specific condition patterns
+ // like the following:
+ if (
+ typeof define == 'function' &&
+ typeof define.amd == 'object' &&
+ define.amd
+ ) {
+ define('punycode', function() {
+ return punycode;
+ });
+ } else if (freeExports && freeModule) {
+ if (module.exports == freeExports) {
+ // in Node.js, io.js, or RingoJS v0.8.0+
+ freeModule.exports = punycode;
+ } else {
+ // in Narwhal or RingoJS v0.7.0-
+ for (key in punycode) {
+ punycode.hasOwnProperty(key) && (freeExports[key] = punycode[key]);
+ }
+ }
+ } else {
+ // in Rhino or a web browser
+ root.punycode = punycode;
+ }
+
+ }(this));
+
+ }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
+ },{}],61:[function(require,module,exports){
+ module.exports=/[\0-\x1F\x7F-\x9F]/
+ },{}],62:[function(require,module,exports){
+ module.exports=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/
+ },{}],63:[function(require,module,exports){
+ module.exports=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/
+ },{}],64:[function(require,module,exports){
+ module.exports=/[ \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/
+ },{}],65:[function(require,module,exports){
+ 'use strict';
+
+ exports.Any = require('./properties/Any/regex');
+ exports.Cc = require('./categories/Cc/regex');
+ exports.Cf = require('./categories/Cf/regex');
+ exports.P = require('./categories/P/regex');
+ exports.Z = require('./categories/Z/regex');
+
+ },{"./categories/Cc/regex":61,"./categories/Cf/regex":62,"./categories/P/regex":63,"./categories/Z/regex":64,"./properties/Any/regex":66}],66:[function(require,module,exports){
+ module.exports=/[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/
+ },{}],67:[function(require,module,exports){
+ 'use strict';
+
+
+ module.exports = require('./lib/');
+
+ },{"./lib/":9}]},{},[67])(67)
+ });
+ const markdownit = define()
+ export default markdownit
\ No newline at end of file
diff --git a/app/assets/frontends/beaker-forum/webfonts/fa-brands-400.eot b/app/assets/frontends/beaker-forum/webfonts/fa-brands-400.eot
new file mode 100644
index 0000000000..da7bd5eb70
Binary files /dev/null and b/app/assets/frontends/beaker-forum/webfonts/fa-brands-400.eot differ
diff --git a/app/assets/frontends/beaker-forum/webfonts/fa-brands-400.svg b/app/assets/frontends/beaker-forum/webfonts/fa-brands-400.svg
new file mode 100644
index 0000000000..caa8cc43ca
--- /dev/null
+++ b/app/assets/frontends/beaker-forum/webfonts/fa-brands-400.svg
@@ -0,0 +1,3296 @@
+
+
+
diff --git a/app/assets/frontends/beaker-forum/webfonts/fa-brands-400.ttf b/app/assets/frontends/beaker-forum/webfonts/fa-brands-400.ttf
new file mode 100644
index 0000000000..5f72e9127f
Binary files /dev/null and b/app/assets/frontends/beaker-forum/webfonts/fa-brands-400.ttf differ
diff --git a/app/assets/frontends/beaker-forum/webfonts/fa-brands-400.woff b/app/assets/frontends/beaker-forum/webfonts/fa-brands-400.woff
new file mode 100644
index 0000000000..c64755a525
Binary files /dev/null and b/app/assets/frontends/beaker-forum/webfonts/fa-brands-400.woff differ
diff --git a/app/assets/frontends/beaker-forum/webfonts/fa-brands-400.woff2 b/app/assets/frontends/beaker-forum/webfonts/fa-brands-400.woff2
new file mode 100644
index 0000000000..b5a956765b
Binary files /dev/null and b/app/assets/frontends/beaker-forum/webfonts/fa-brands-400.woff2 differ
diff --git a/app/assets/frontends/beaker-forum/webfonts/fa-regular-400.eot b/app/assets/frontends/beaker-forum/webfonts/fa-regular-400.eot
new file mode 100644
index 0000000000..55085ca95d
Binary files /dev/null and b/app/assets/frontends/beaker-forum/webfonts/fa-regular-400.eot differ
diff --git a/app/assets/frontends/beaker-forum/webfonts/fa-regular-400.svg b/app/assets/frontends/beaker-forum/webfonts/fa-regular-400.svg
new file mode 100644
index 0000000000..bba54466b9
--- /dev/null
+++ b/app/assets/frontends/beaker-forum/webfonts/fa-regular-400.svg
@@ -0,0 +1,799 @@
+
+
+
diff --git a/app/assets/frontends/beaker-forum/webfonts/fa-regular-400.ttf b/app/assets/frontends/beaker-forum/webfonts/fa-regular-400.ttf
new file mode 100644
index 0000000000..a309313d5f
Binary files /dev/null and b/app/assets/frontends/beaker-forum/webfonts/fa-regular-400.ttf differ
diff --git a/app/assets/frontends/beaker-forum/webfonts/fa-regular-400.woff b/app/assets/frontends/beaker-forum/webfonts/fa-regular-400.woff
new file mode 100644
index 0000000000..2578261897
Binary files /dev/null and b/app/assets/frontends/beaker-forum/webfonts/fa-regular-400.woff differ
diff --git a/app/assets/frontends/beaker-forum/webfonts/fa-regular-400.woff2 b/app/assets/frontends/beaker-forum/webfonts/fa-regular-400.woff2
new file mode 100644
index 0000000000..3ef9c3edb0
Binary files /dev/null and b/app/assets/frontends/beaker-forum/webfonts/fa-regular-400.woff2 differ
diff --git a/app/assets/frontends/beaker-forum/webfonts/fa-solid-900.eot b/app/assets/frontends/beaker-forum/webfonts/fa-solid-900.eot
new file mode 100644
index 0000000000..68c010a862
Binary files /dev/null and b/app/assets/frontends/beaker-forum/webfonts/fa-solid-900.eot differ
diff --git a/app/assets/frontends/beaker-forum/webfonts/fa-solid-900.svg b/app/assets/frontends/beaker-forum/webfonts/fa-solid-900.svg
new file mode 100644
index 0000000000..4ef85aa379
--- /dev/null
+++ b/app/assets/frontends/beaker-forum/webfonts/fa-solid-900.svg
@@ -0,0 +1,4516 @@
+
+
+
diff --git a/app/assets/frontends/beaker-forum/webfonts/fa-solid-900.ttf b/app/assets/frontends/beaker-forum/webfonts/fa-solid-900.ttf
new file mode 100644
index 0000000000..7ece3282a4
Binary files /dev/null and b/app/assets/frontends/beaker-forum/webfonts/fa-solid-900.ttf differ
diff --git a/app/assets/frontends/beaker-forum/webfonts/fa-solid-900.woff b/app/assets/frontends/beaker-forum/webfonts/fa-solid-900.woff
new file mode 100644
index 0000000000..a892a7a9c1
Binary files /dev/null and b/app/assets/frontends/beaker-forum/webfonts/fa-solid-900.woff differ
diff --git a/app/assets/frontends/beaker-forum/webfonts/fa-solid-900.woff2 b/app/assets/frontends/beaker-forum/webfonts/fa-solid-900.woff2
new file mode 100644
index 0000000000..71b07ce028
Binary files /dev/null and b/app/assets/frontends/beaker-forum/webfonts/fa-solid-900.woff2 differ
diff --git a/app/assets/frontends/beaker-forum/webfonts/fontawesome.css b/app/assets/frontends/beaker-forum/webfonts/fontawesome.css
new file mode 100644
index 0000000000..a74835e25b
--- /dev/null
+++ b/app/assets/frontends/beaker-forum/webfonts/fontawesome.css
@@ -0,0 +1 @@
+.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-wizard:before{content:"\f6e8"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;font-display:auto;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:auto;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:auto;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}
\ No newline at end of file
diff --git a/app/assets/frontends/beaker-module/.beaker-ui b/app/assets/frontends/beaker-module/.beaker-ui
new file mode 100644
index 0000000000..3b499f8376
--- /dev/null
+++ b/app/assets/frontends/beaker-module/.beaker-ui
@@ -0,0 +1 @@
+builtin:beaker-module
\ No newline at end of file
diff --git a/app/assets/frontends/beaker-module/img/file.svg b/app/assets/frontends/beaker-module/img/file.svg
new file mode 100644
index 0000000000..a9c6d92837
--- /dev/null
+++ b/app/assets/frontends/beaker-module/img/file.svg
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/app/assets/frontends/beaker-module/img/folder.svg b/app/assets/frontends/beaker-module/img/folder.svg
new file mode 100644
index 0000000000..d6a5191b41
--- /dev/null
+++ b/app/assets/frontends/beaker-module/img/folder.svg
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/app/assets/frontends/beaker-module/img/mount.svg b/app/assets/frontends/beaker-module/img/mount.svg
new file mode 100644
index 0000000000..b7f1b32544
--- /dev/null
+++ b/app/assets/frontends/beaker-module/img/mount.svg
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/app/assets/frontends/beaker-module/img/props.svg b/app/assets/frontends/beaker-module/img/props.svg
new file mode 100644
index 0000000000..09dc1d76fa
--- /dev/null
+++ b/app/assets/frontends/beaker-module/img/props.svg
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/app/assets/frontends/beaker-module/index.json b/app/assets/frontends/beaker-module/index.json
new file mode 100644
index 0000000000..e07ea6d836
--- /dev/null
+++ b/app/assets/frontends/beaker-module/index.json
@@ -0,0 +1,10 @@
+{
+ "title": "Builtin Module Theme",
+ "description": "",
+ "type": "theme",
+ "theme": {
+ "drive_types": [
+ "module"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/app/assets/frontends/beaker-module/ui.css b/app/assets/frontends/beaker-module/ui.css
new file mode 100644
index 0000000000..a57d11393e
--- /dev/null
+++ b/app/assets/frontends/beaker-module/ui.css
@@ -0,0 +1,235 @@
+body {
+ --light-gray: #f7f7fc;
+ --blue: #2864dc;
+ --border-radius: 4px;
+
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
+ margin: 0;
+}
+
+a {
+ color: var(--blue);
+ text-decoration: none;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+button, .button {
+ display: inline-block;
+ padding: 0.5rem 0.8rem;
+ background: #fff;
+ border: 1px solid #88f;
+ border-radius: 4px;
+ color: var(--blue);
+ outline: 0;
+ font-size: 12px;
+ box-shadow: 0 0 0 #0003;
+ transition: box-shadow 0.2s;
+}
+
+button:hover, .button:hover {
+ box-shadow: 0 1px 2px #0003;
+ text-decoration: none;
+}
+
+button:active {
+ background: var(--light-gray);
+}
+
+button.primary {
+ color: #fff;
+ background: var(--blue);
+ border-color: var(--blue);
+}
+
+button img {
+ display: block;
+ width: 16px;
+}
+
+nav {
+ background: var(--light-gray);
+}
+
+nav > *,
+main > * {
+ max-width: 800px;
+ margin: 0 auto;
+ display: block;
+}
+
+module-header {
+ position: relative;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ height: 100px;
+ padding: 0 20px;
+}
+
+module-header h1,
+module-header p {
+ margin: 0.25rem 0;
+ line-height: 1;
+}
+
+module-header h1 {
+ font-size: 2rem;
+}
+
+module-header h1 a {
+ color: inherit;
+}
+
+module-header .admin {
+ display: flex;
+ position: absolute;
+ top: 30px;
+ right: 20px;
+}
+
+module-header .admin > * {
+ margin-left: 5px;
+}
+
+module-breadcrumbs {
+ display: flex;
+ align-items: center;
+ margin: 1rem 0;
+ font-size: 15px;
+}
+
+module-breadcrumbs > * {
+ margin-right: 5px;
+}
+
+module-breadcrumbs a {
+ letter-spacing: 0.8px;
+ font-weight: 600;
+}
+
+module-breadcrumbs a:last-of-type {
+ color: #334;
+}
+
+module-directory-view .listing {
+ margin: 1rem 0;
+ border: 1px solid #ccd;
+ border-radius: var(--border-radius);
+}
+
+module-directory-view .listing .entry {
+ display: flex;
+ align-items: center;
+ padding: 0.6rem 0.8rem;
+ border-bottom: 1px solid #ccd;
+}
+
+module-directory-view .listing .entry:last-child {
+ border-bottom: 0;
+}
+
+module-directory-view .listing .entry .icon {
+ width: 16px;
+ height: 16px;
+ margin-right: 10px;
+}
+
+module-directory-view .listing .entry a {
+ font-size: 15px;
+ margin-right: auto;
+}
+
+module-directory-view .listing .entry small {
+ opacity: 0.5;
+}
+
+module-file-view {
+ display: block;
+ margin: 1rem 0;
+ border: 1px solid #ccd;
+ border-radius: var(--border-radius);
+}
+
+module-file-view .hljs {
+ background: #fff;
+ font-size: 14px;
+ line-height: 1.4;
+}
+
+module-file-view .content {
+ margin: 0;
+ padding: 1.25rem 1rem;
+}
+
+.content > :first-child {
+ margin-top: 0;
+}
+.content hr {
+ border: 0;
+ border-top: 1px solid #ccd;
+}
+.content h1,
+.content h2,
+.content h3,
+.content h4,
+.content h5 { margin: 1.5rem 0; }
+.content h1 { font-size: 2em; }
+.content h2 { font-size: 1.7em; }
+.content h3 { font-size: 1.4em; }
+.content h4 { font-size: 1.3em; }
+.content h5 { font-size: 1.1em; }
+.content pre {
+ background: var(--light-gray);
+ padding: 1em;
+ overflow: auto;
+}
+.content p,
+.content ul,
+.content ol {
+ line-height: 1.5;
+}
+.content table {
+ margin: 1em 0;
+}
+.content blockquote {
+ border-left: 10px solid var(--light-gray);
+ margin: 1em 0;
+ padding: 1px 1.5em;
+ color: #667;
+}
+
+.content #mocha {
+ margin: 0;
+}
+
+.content #mocha h1 {
+ margin-top: 0;
+ font-weight: 500;
+}
+
+.content #mocha .suite {
+ margin-bottom: 15px;
+}
+
+.content #mocha #mocha-stats {
+ background: #fff;
+ border: 1px solid #ccd;
+ padding: 9px 6px 4px 12px;
+ border-radius: 30px;
+ box-shadow: 0 1px 2px #0002;
+}
+
+.content #mocha #mocha-stats li:not(.progress) {
+ padding-top: 12px;
+}
+
+@media (max-width: 1460px) {
+ .content #mocha #mocha-stats {
+ top: unset;
+ bottom: 15px;
+ right: 15px;
+ }
+}
\ No newline at end of file
diff --git a/app/assets/frontends/beaker-module/ui.html b/app/assets/frontends/beaker-module/ui.html
new file mode 100644
index 0000000000..85909ad5af
--- /dev/null
+++ b/app/assets/frontends/beaker-module/ui.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/assets/frontends/beaker-module/ui.js b/app/assets/frontends/beaker-module/ui.js
new file mode 100644
index 0000000000..8ccaa72ba1
--- /dev/null
+++ b/app/assets/frontends/beaker-module/ui.js
@@ -0,0 +1,250 @@
+import MarkdownIt from './vendor/markdown-it.js'
+
+var self = hyperdrive.self
+var infoPromise = self.getInfo()
+
+function h (tag, attrs, ...children) {
+ var el = document.createElement(tag)
+ for (let k in attrs) el.setAttribute(k, attrs[k])
+ for (let child of children) el.append(child)
+ return el
+}
+
+function formatBytes (bytes, decimals = 2) {
+ if (bytes === 0) return ''
+ const k = 1024
+ const dm = decimals < 0 ? 0 : decimals
+ const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']
+ const i = Math.floor(Math.log(bytes) / Math.log(k))
+ return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + sizes[i]
+}
+
+customElements.define('module-header', class extends HTMLElement {
+ constructor () {
+ super()
+ this.render()
+ }
+ async render () {
+ var [info, hasTests, hasDemo] = await Promise.all([
+ infoPromise,
+ self.stat('/tests/index.html').catch(e => false),
+ self.stat('/demo/index.html').catch(e => false)
+ ])
+
+ this.append(h('h1', {}, h('a', {href: '/'}, info.title)))
+ if (info.writable) {
+ let editProps = h('a', {title: 'Edit Properties', href: '#'}, 'Edit')
+ editProps.addEventListener('click', async (e) => {
+ e.preventDefault()
+ await navigator.drivePropertiesDialog(self.url)
+ location.reload()
+ })
+ this.append(h('p', {}, `${info.description} [ `, editProps, ` ]`))
+ } else {
+ this.append(h('p', {}, info.description))
+ }
+
+ var buttons = []
+ if (hasDemo) {
+ buttons.push(h('a', {class: 'button', href: '/demo/', title: 'View Demo'}, 'View Demo'))
+ }
+ if (hasTests) {
+ buttons.push(h('a', {class: 'button', href: '/tests/', title: 'Run Tests'}, 'Run Tests'))
+ }
+ this.append(h('div', {class: 'admin'}, ...buttons))
+ }
+})
+
+class ModuleBreadcrumbs extends HTMLElement {
+ constructor () {
+ super()
+ this.render()
+ }
+ async render () {
+ var info = await infoPromise
+ var parts = location.pathname.split('/').filter(Boolean)
+ var acc = []
+ this.append(h('a', {href: '/'}, info.title))
+ this.append(h('span', {}, '/'))
+ for (let part of parts) {
+ acc.push(part)
+ let href = '/' + acc.join('/')
+ this.append(h('a', {href}, part))
+ this.append(h('span', {}, '/'))
+ }
+ }
+}
+customElements.define('module-breadcrumbs', ModuleBreadcrumbs)
+
+class ModuleDirectoryView extends HTMLElement {
+ constructor () {
+ super()
+ this.render()
+ }
+
+ async render () {
+ var entries = await self.readdir(location.pathname, {includeStats: true})
+ entries.sort((a, b) => {
+ if (a.stat.isDirectory() && !b.stat.isDirectory()) return -1
+ if (!a.stat.isDirectory() && b.stat.isDirectory()) return 1
+ return a.name.localeCompare(b.name)
+ })
+
+ var listing = h('div', {class: 'listing'})
+ for (let entry of entries) {
+ let isDir = entry.stat.isDirectory()
+ let isMount = !!entry.stat.mount
+ let href = isMount ? `hyper://${entry.stat.mount.key}` : `./${entry.name}${isDir ? '/' : ''}`
+ listing.append(h('div', {class: 'entry'},
+ h('img', {class: 'icon', src: `/.ui/img/${isMount ? 'mount' : isDir ? 'folder' : 'file'}.svg`}),
+ h('a', {href}, entry.name),
+ h('small', {}, formatBytes(entry.stat.size))
+ ))
+ }
+ if (entries.length === 0) {
+ listing.append(h('div', {class: 'entry'}, 'This folder is empty'))
+ }
+ this.append(listing)
+ }
+}
+customElements.define('module-directory-view', ModuleDirectoryView)
+
+class ModuleFileView extends HTMLElement {
+ constructor (pathname, renderHTML = false) {
+ super()
+ this.render(pathname, renderHTML)
+ }
+ async render (pathname, renderHTML = false) {
+ // check existence
+ let stat = await self.stat(pathname).catch(e => undefined)
+ if (!stat) {
+ // 404
+ this.append(h('div', {class: 'empty'}, h('h2', {}, '404 File Not Found')))
+ return
+ }
+
+ // embed content
+ if (/\.(png|jpe?g|gif)$/i.test(pathname)) {
+ this.append(h('img', {src: pathname}))
+ } else if (/\.(mp4|webm|mov)/i.test(pathname)) {
+ this.append(h('video', {controls: true}, h('source', {src: pathname})))
+ } else if (/\.(mp3|ogg)/i.test(pathname)) {
+ this.append(h('audio', {controls: true}, h('source', {src: pathname})))
+ } else {
+ // render content
+ let content = await self.readFile(pathname)
+ if (renderHTML && /\.(md|html)$/i.test(pathname)) {
+ if (pathname.endsWith('.md')) {
+ let md = new MarkdownIt()
+ content = md.render(content)
+ }
+ let contentEl = h('div', {class: 'content'})
+ contentEl.innerHTML = content
+ this.append(contentEl)
+ executeScripts(contentEl)
+ } else {
+ let codeBlock = h('pre', {class: 'content'}, content)
+ hljs.highlightBlock(codeBlock)
+ this.append(codeBlock)
+ }
+ }
+ }
+}
+customElements.define('module-file-view', ModuleFileView)
+
+class ModuleReadmeView extends HTMLElement {
+ constructor () {
+ super()
+ this.render()
+ }
+ async render () {
+ let files = await self.readdir(location.pathname).catch(e => ([]))
+ files = files.filter(f => ['index.html', 'index.md'].includes(f.toLowerCase()))
+ if (files[0]) {
+ this.append(new ModuleFileView(location.pathname + files[0], true))
+ }
+ }
+}
+customElements.define('module-readme-view', ModuleReadmeView)
+
+customElements.define('module-page', class extends HTMLElement {
+ constructor () {
+ super()
+ if (location.pathname !== '/') {
+ this.append(new ModuleBreadcrumbs())
+ }
+ if (location.pathname.endsWith('/')) {
+ this.append(new ModuleDirectoryView())
+ this.append(new ModuleReadmeView())
+ } else {
+ this.append(new ModuleFileView(location.pathname))
+ }
+ }
+})
+
+async function executeScripts (el) {
+ for (let scriptEl of Array.from(el.querySelectorAll('script'))) {
+ let promise
+ let newScriptEl = document.createElement('script')
+ newScriptEl.setAttribute('type', scriptEl.getAttribute('type') || 'module')
+ newScriptEl.textContent = scriptEl.textContent
+ if (scriptEl.getAttribute('src')) {
+ newScriptEl.setAttribute('src', scriptEl.getAttribute('src'))
+ promise = new Promise((resolve, reject) => {
+ newScriptEl.onload = resolve
+ newScriptEl.onerror = resolve
+ })
+ }
+ document.head.append(newScriptEl)
+ await promise
+ }
+}
+
+navigator.terminal.registerCommand({
+ name: 'test',
+ help: 'Run the module tests',
+ handle () {
+ if (location.pathname !== '/tests/') {
+ location.pathname = '/tests/'
+ } else {
+ location.reload()
+ }
+ }
+})
+navigator.terminal.registerCommand({
+ name: 'demo',
+ help: 'View the module demo',
+ handle () {
+ if (location.pathname !== '/demo/') {
+ location.pathname = '/demo/'
+ } else {
+ location.reload()
+ }
+ }
+})
+navigator.terminal.registerCommand({
+ name: 'run',
+ help: 'Run a script in the /scripts directory',
+ usage: '@run {script} {...args}',
+ async handle (opts = {}, ...args) {
+ var scriptName = args[0]
+ if (!scriptName) throw new Error('Must specify a script to run')
+ if (!scriptName.endsWith('.js')) {
+ scriptName += '.js'
+ }
+ var scriptPath = `/scripts/${scriptName}`
+ try {
+ var script = await import(scriptPath)
+ } catch (e) {
+ if (e.message.includes('Failed to fetch')) {
+ throw new Error(`No script found in /scripts named ${scriptName}`)
+ } else {
+ throw e
+ }
+ }
+ if (typeof script.default !== 'function') {
+ throw new Error('The script must export a default function')
+ }
+ return script.default(opts, args.slice(1))
+ }
+})
\ No newline at end of file
diff --git a/app/assets/frontends/beaker-module/vendor/chai.js b/app/assets/frontends/beaker-module/vendor/chai.js
new file mode 100644
index 0000000000..36f425d109
--- /dev/null
+++ b/app/assets/frontends/beaker-module/vendor/chai.js
@@ -0,0 +1,10854 @@
+(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.chai = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i
+ * MIT Licensed
+ */
+
+var used = [];
+
+/*!
+ * Chai version
+ */
+
+exports.version = '4.2.0';
+
+/*!
+ * Assertion Error
+ */
+
+exports.AssertionError = require('assertion-error');
+
+/*!
+ * Utils for plugins (not exported)
+ */
+
+var util = require('./chai/utils');
+
+/**
+ * # .use(function)
+ *
+ * Provides a way to extend the internals of Chai.
+ *
+ * @param {Function}
+ * @returns {this} for chaining
+ * @api public
+ */
+
+exports.use = function (fn) {
+ if (!~used.indexOf(fn)) {
+ fn(exports, util);
+ used.push(fn);
+ }
+
+ return exports;
+};
+
+/*!
+ * Utility Functions
+ */
+
+exports.util = util;
+
+/*!
+ * Configuration
+ */
+
+var config = require('./chai/config');
+exports.config = config;
+
+/*!
+ * Primary `Assertion` prototype
+ */
+
+var assertion = require('./chai/assertion');
+exports.use(assertion);
+
+/*!
+ * Core Assertions
+ */
+
+var core = require('./chai/core/assertions');
+exports.use(core);
+
+/*!
+ * Expect interface
+ */
+
+var expect = require('./chai/interface/expect');
+exports.use(expect);
+
+/*!
+ * Should interface
+ */
+
+var should = require('./chai/interface/should');
+exports.use(should);
+
+/*!
+ * Assert interface
+ */
+
+var assert = require('./chai/interface/assert');
+exports.use(assert);
+
+},{"./chai/assertion":3,"./chai/config":4,"./chai/core/assertions":5,"./chai/interface/assert":6,"./chai/interface/expect":7,"./chai/interface/should":8,"./chai/utils":22,"assertion-error":33}],3:[function(require,module,exports){
+/*!
+ * chai
+ * http://chaijs.com
+ * Copyright(c) 2011-2014 Jake Luer
+ * MIT Licensed
+ */
+
+var config = require('./config');
+
+module.exports = function (_chai, util) {
+ /*!
+ * Module dependencies.
+ */
+
+ var AssertionError = _chai.AssertionError
+ , flag = util.flag;
+
+ /*!
+ * Module export.
+ */
+
+ _chai.Assertion = Assertion;
+
+ /*!
+ * Assertion Constructor
+ *
+ * Creates object for chaining.
+ *
+ * `Assertion` objects contain metadata in the form of flags. Three flags can
+ * be assigned during instantiation by passing arguments to this constructor:
+ *
+ * - `object`: This flag contains the target of the assertion. For example, in
+ * the assertion `expect(numKittens).to.equal(7);`, the `object` flag will
+ * contain `numKittens` so that the `equal` assertion can reference it when
+ * needed.
+ *
+ * - `message`: This flag contains an optional custom error message to be
+ * prepended to the error message that's generated by the assertion when it
+ * fails.
+ *
+ * - `ssfi`: This flag stands for "start stack function indicator". It
+ * contains a function reference that serves as the starting point for
+ * removing frames from the stack trace of the error that's created by the
+ * assertion when it fails. The goal is to provide a cleaner stack trace to
+ * end users by removing Chai's internal functions. Note that it only works
+ * in environments that support `Error.captureStackTrace`, and only when
+ * `Chai.config.includeStack` hasn't been set to `false`.
+ *
+ * - `lockSsfi`: This flag controls whether or not the given `ssfi` flag
+ * should retain its current value, even as assertions are chained off of
+ * this object. This is usually set to `true` when creating a new assertion
+ * from within another assertion. It's also temporarily set to `true` before
+ * an overwritten assertion gets called by the overwriting assertion.
+ *
+ * @param {Mixed} obj target of the assertion
+ * @param {String} msg (optional) custom error message
+ * @param {Function} ssfi (optional) starting point for removing stack frames
+ * @param {Boolean} lockSsfi (optional) whether or not the ssfi flag is locked
+ * @api private
+ */
+
+ function Assertion (obj, msg, ssfi, lockSsfi) {
+ flag(this, 'ssfi', ssfi || Assertion);
+ flag(this, 'lockSsfi', lockSsfi);
+ flag(this, 'object', obj);
+ flag(this, 'message', msg);
+
+ return util.proxify(this);
+ }
+
+ Object.defineProperty(Assertion, 'includeStack', {
+ get: function() {
+ console.warn('Assertion.includeStack is deprecated, use chai.config.includeStack instead.');
+ return config.includeStack;
+ },
+ set: function(value) {
+ console.warn('Assertion.includeStack is deprecated, use chai.config.includeStack instead.');
+ config.includeStack = value;
+ }
+ });
+
+ Object.defineProperty(Assertion, 'showDiff', {
+ get: function() {
+ console.warn('Assertion.showDiff is deprecated, use chai.config.showDiff instead.');
+ return config.showDiff;
+ },
+ set: function(value) {
+ console.warn('Assertion.showDiff is deprecated, use chai.config.showDiff instead.');
+ config.showDiff = value;
+ }
+ });
+
+ Assertion.addProperty = function (name, fn) {
+ util.addProperty(this.prototype, name, fn);
+ };
+
+ Assertion.addMethod = function (name, fn) {
+ util.addMethod(this.prototype, name, fn);
+ };
+
+ Assertion.addChainableMethod = function (name, fn, chainingBehavior) {
+ util.addChainableMethod(this.prototype, name, fn, chainingBehavior);
+ };
+
+ Assertion.overwriteProperty = function (name, fn) {
+ util.overwriteProperty(this.prototype, name, fn);
+ };
+
+ Assertion.overwriteMethod = function (name, fn) {
+ util.overwriteMethod(this.prototype, name, fn);
+ };
+
+ Assertion.overwriteChainableMethod = function (name, fn, chainingBehavior) {
+ util.overwriteChainableMethod(this.prototype, name, fn, chainingBehavior);
+ };
+
+ /**
+ * ### .assert(expression, message, negateMessage, expected, actual, showDiff)
+ *
+ * Executes an expression and check expectations. Throws AssertionError for reporting if test doesn't pass.
+ *
+ * @name assert
+ * @param {Philosophical} expression to be tested
+ * @param {String|Function} message or function that returns message to display if expression fails
+ * @param {String|Function} negatedMessage or function that returns negatedMessage to display if negated expression fails
+ * @param {Mixed} expected value (remember to check for negation)
+ * @param {Mixed} actual (optional) will default to `this.obj`
+ * @param {Boolean} showDiff (optional) when set to `true`, assert will display a diff in addition to the message if expression fails
+ * @api private
+ */
+
+ Assertion.prototype.assert = function (expr, msg, negateMsg, expected, _actual, showDiff) {
+ var ok = util.test(this, arguments);
+ if (false !== showDiff) showDiff = true;
+ if (undefined === expected && undefined === _actual) showDiff = false;
+ if (true !== config.showDiff) showDiff = false;
+
+ if (!ok) {
+ msg = util.getMessage(this, arguments);
+ var actual = util.getActual(this, arguments);
+ throw new AssertionError(msg, {
+ actual: actual
+ , expected: expected
+ , showDiff: showDiff
+ }, (config.includeStack) ? this.assert : flag(this, 'ssfi'));
+ }
+ };
+
+ /*!
+ * ### ._obj
+ *
+ * Quick reference to stored `actual` value for plugin developers.
+ *
+ * @api private
+ */
+
+ Object.defineProperty(Assertion.prototype, '_obj',
+ { get: function () {
+ return flag(this, 'object');
+ }
+ , set: function (val) {
+ flag(this, 'object', val);
+ }
+ });
+};
+
+},{"./config":4}],4:[function(require,module,exports){
+module.exports = {
+
+ /**
+ * ### config.includeStack
+ *
+ * User configurable property, influences whether stack trace
+ * is included in Assertion error message. Default of false
+ * suppresses stack trace in the error message.
+ *
+ * chai.config.includeStack = true; // enable stack on error
+ *
+ * @param {Boolean}
+ * @api public
+ */
+
+ includeStack: false,
+
+ /**
+ * ### config.showDiff
+ *
+ * User configurable property, influences whether or not
+ * the `showDiff` flag should be included in the thrown
+ * AssertionErrors. `false` will always be `false`; `true`
+ * will be true when the assertion has requested a diff
+ * be shown.
+ *
+ * @param {Boolean}
+ * @api public
+ */
+
+ showDiff: true,
+
+ /**
+ * ### config.truncateThreshold
+ *
+ * User configurable property, sets length threshold for actual and
+ * expected values in assertion errors. If this threshold is exceeded, for
+ * example for large data structures, the value is replaced with something
+ * like `[ Array(3) ]` or `{ Object (prop1, prop2) }`.
+ *
+ * Set it to zero if you want to disable truncating altogether.
+ *
+ * This is especially userful when doing assertions on arrays: having this
+ * set to a reasonable large value makes the failure messages readily
+ * inspectable.
+ *
+ * chai.config.truncateThreshold = 0; // disable truncating
+ *
+ * @param {Number}
+ * @api public
+ */
+
+ truncateThreshold: 40,
+
+ /**
+ * ### config.useProxy
+ *
+ * User configurable property, defines if chai will use a Proxy to throw
+ * an error when a non-existent property is read, which protects users
+ * from typos when using property-based assertions.
+ *
+ * Set it to false if you want to disable this feature.
+ *
+ * chai.config.useProxy = false; // disable use of Proxy
+ *
+ * This feature is automatically disabled regardless of this config value
+ * in environments that don't support proxies.
+ *
+ * @param {Boolean}
+ * @api public
+ */
+
+ useProxy: true,
+
+ /**
+ * ### config.proxyExcludedKeys
+ *
+ * User configurable property, defines which properties should be ignored
+ * instead of throwing an error if they do not exist on the assertion.
+ * This is only applied if the environment Chai is running in supports proxies and
+ * if the `useProxy` configuration setting is enabled.
+ * By default, `then` and `inspect` will not throw an error if they do not exist on the
+ * assertion object because the `.inspect` property is read by `util.inspect` (for example, when
+ * using `console.log` on the assertion object) and `.then` is necessary for promise type-checking.
+ *
+ * // By default these keys will not throw an error if they do not exist on the assertion object
+ * chai.config.proxyExcludedKeys = ['then', 'inspect'];
+ *
+ * @param {Array}
+ * @api public
+ */
+
+ proxyExcludedKeys: ['then', 'catch', 'inspect', 'toJSON']
+};
+
+},{}],5:[function(require,module,exports){
+/*!
+ * chai
+ * http://chaijs.com
+ * Copyright(c) 2011-2014 Jake Luer
+ * MIT Licensed
+ */
+
+module.exports = function (chai, _) {
+ var Assertion = chai.Assertion
+ , AssertionError = chai.AssertionError
+ , flag = _.flag;
+
+ /**
+ * ### Language Chains
+ *
+ * The following are provided as chainable getters to improve the readability
+ * of your assertions.
+ *
+ * **Chains**
+ *
+ * - to
+ * - be
+ * - been
+ * - is
+ * - that
+ * - which
+ * - and
+ * - has
+ * - have
+ * - with
+ * - at
+ * - of
+ * - same
+ * - but
+ * - does
+ * - still
+ *
+ * @name language chains
+ * @namespace BDD
+ * @api public
+ */
+
+ [ 'to', 'be', 'been', 'is'
+ , 'and', 'has', 'have', 'with'
+ , 'that', 'which', 'at', 'of'
+ , 'same', 'but', 'does', 'still' ].forEach(function (chain) {
+ Assertion.addProperty(chain);
+ });
+
+ /**
+ * ### .not
+ *
+ * Negates all assertions that follow in the chain.
+ *
+ * expect(function () {}).to.not.throw();
+ * expect({a: 1}).to.not.have.property('b');
+ * expect([1, 2]).to.be.an('array').that.does.not.include(3);
+ *
+ * Just because you can negate any assertion with `.not` doesn't mean you
+ * should. With great power comes great responsibility. It's often best to
+ * assert that the one expected output was produced, rather than asserting
+ * that one of countless unexpected outputs wasn't produced. See individual
+ * assertions for specific guidance.
+ *
+ * expect(2).to.equal(2); // Recommended
+ * expect(2).to.not.equal(1); // Not recommended
+ *
+ * @name not
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('not', function () {
+ flag(this, 'negate', true);
+ });
+
+ /**
+ * ### .deep
+ *
+ * Causes all `.equal`, `.include`, `.members`, `.keys`, and `.property`
+ * assertions that follow in the chain to use deep equality instead of strict
+ * (`===`) equality. See the `deep-eql` project page for info on the deep
+ * equality algorithm: https://github.com/chaijs/deep-eql.
+ *
+ * // Target object deeply (but not strictly) equals `{a: 1}`
+ * expect({a: 1}).to.deep.equal({a: 1});
+ * expect({a: 1}).to.not.equal({a: 1});
+ *
+ * // Target array deeply (but not strictly) includes `{a: 1}`
+ * expect([{a: 1}]).to.deep.include({a: 1});
+ * expect([{a: 1}]).to.not.include({a: 1});
+ *
+ * // Target object deeply (but not strictly) includes `x: {a: 1}`
+ * expect({x: {a: 1}}).to.deep.include({x: {a: 1}});
+ * expect({x: {a: 1}}).to.not.include({x: {a: 1}});
+ *
+ * // Target array deeply (but not strictly) has member `{a: 1}`
+ * expect([{a: 1}]).to.have.deep.members([{a: 1}]);
+ * expect([{a: 1}]).to.not.have.members([{a: 1}]);
+ *
+ * // Target set deeply (but not strictly) has key `{a: 1}`
+ * expect(new Set([{a: 1}])).to.have.deep.keys([{a: 1}]);
+ * expect(new Set([{a: 1}])).to.not.have.keys([{a: 1}]);
+ *
+ * // Target object deeply (but not strictly) has property `x: {a: 1}`
+ * expect({x: {a: 1}}).to.have.deep.property('x', {a: 1});
+ * expect({x: {a: 1}}).to.not.have.property('x', {a: 1});
+ *
+ * @name deep
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('deep', function () {
+ flag(this, 'deep', true);
+ });
+
+ /**
+ * ### .nested
+ *
+ * Enables dot- and bracket-notation in all `.property` and `.include`
+ * assertions that follow in the chain.
+ *
+ * expect({a: {b: ['x', 'y']}}).to.have.nested.property('a.b[1]');
+ * expect({a: {b: ['x', 'y']}}).to.nested.include({'a.b[1]': 'y'});
+ *
+ * If `.` or `[]` are part of an actual property name, they can be escaped by
+ * adding two backslashes before them.
+ *
+ * expect({'.a': {'[b]': 'x'}}).to.have.nested.property('\\.a.\\[b\\]');
+ * expect({'.a': {'[b]': 'x'}}).to.nested.include({'\\.a.\\[b\\]': 'x'});
+ *
+ * `.nested` cannot be combined with `.own`.
+ *
+ * @name nested
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('nested', function () {
+ flag(this, 'nested', true);
+ });
+
+ /**
+ * ### .own
+ *
+ * Causes all `.property` and `.include` assertions that follow in the chain
+ * to ignore inherited properties.
+ *
+ * Object.prototype.b = 2;
+ *
+ * expect({a: 1}).to.have.own.property('a');
+ * expect({a: 1}).to.have.property('b');
+ * expect({a: 1}).to.not.have.own.property('b');
+ *
+ * expect({a: 1}).to.own.include({a: 1});
+ * expect({a: 1}).to.include({b: 2}).but.not.own.include({b: 2});
+ *
+ * `.own` cannot be combined with `.nested`.
+ *
+ * @name own
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('own', function () {
+ flag(this, 'own', true);
+ });
+
+ /**
+ * ### .ordered
+ *
+ * Causes all `.members` assertions that follow in the chain to require that
+ * members be in the same order.
+ *
+ * expect([1, 2]).to.have.ordered.members([1, 2])
+ * .but.not.have.ordered.members([2, 1]);
+ *
+ * When `.include` and `.ordered` are combined, the ordering begins at the
+ * start of both arrays.
+ *
+ * expect([1, 2, 3]).to.include.ordered.members([1, 2])
+ * .but.not.include.ordered.members([2, 3]);
+ *
+ * @name ordered
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('ordered', function () {
+ flag(this, 'ordered', true);
+ });
+
+ /**
+ * ### .any
+ *
+ * Causes all `.keys` assertions that follow in the chain to only require that
+ * the target have at least one of the given keys. This is the opposite of
+ * `.all`, which requires that the target have all of the given keys.
+ *
+ * expect({a: 1, b: 2}).to.not.have.any.keys('c', 'd');
+ *
+ * See the `.keys` doc for guidance on when to use `.any` or `.all`.
+ *
+ * @name any
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('any', function () {
+ flag(this, 'any', true);
+ flag(this, 'all', false);
+ });
+
+ /**
+ * ### .all
+ *
+ * Causes all `.keys` assertions that follow in the chain to require that the
+ * target have all of the given keys. This is the opposite of `.any`, which
+ * only requires that the target have at least one of the given keys.
+ *
+ * expect({a: 1, b: 2}).to.have.all.keys('a', 'b');
+ *
+ * Note that `.all` is used by default when neither `.all` nor `.any` are
+ * added earlier in the chain. However, it's often best to add `.all` anyway
+ * because it improves readability.
+ *
+ * See the `.keys` doc for guidance on when to use `.any` or `.all`.
+ *
+ * @name all
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('all', function () {
+ flag(this, 'all', true);
+ flag(this, 'any', false);
+ });
+
+ /**
+ * ### .a(type[, msg])
+ *
+ * Asserts that the target's type is equal to the given string `type`. Types
+ * are case insensitive. See the `type-detect` project page for info on the
+ * type detection algorithm: https://github.com/chaijs/type-detect.
+ *
+ * expect('foo').to.be.a('string');
+ * expect({a: 1}).to.be.an('object');
+ * expect(null).to.be.a('null');
+ * expect(undefined).to.be.an('undefined');
+ * expect(new Error).to.be.an('error');
+ * expect(Promise.resolve()).to.be.a('promise');
+ * expect(new Float32Array).to.be.a('float32array');
+ * expect(Symbol()).to.be.a('symbol');
+ *
+ * `.a` supports objects that have a custom type set via `Symbol.toStringTag`.
+ *
+ * var myObj = {
+ * [Symbol.toStringTag]: 'myCustomType'
+ * };
+ *
+ * expect(myObj).to.be.a('myCustomType').but.not.an('object');
+ *
+ * It's often best to use `.a` to check a target's type before making more
+ * assertions on the same target. That way, you avoid unexpected behavior from
+ * any assertion that does different things based on the target's type.
+ *
+ * expect([1, 2, 3]).to.be.an('array').that.includes(2);
+ * expect([]).to.be.an('array').that.is.empty;
+ *
+ * Add `.not` earlier in the chain to negate `.a`. However, it's often best to
+ * assert that the target is the expected type, rather than asserting that it
+ * isn't one of many unexpected types.
+ *
+ * expect('foo').to.be.a('string'); // Recommended
+ * expect('foo').to.not.be.an('array'); // Not recommended
+ *
+ * `.a` accepts an optional `msg` argument which is a custom error message to
+ * show when the assertion fails. The message can also be given as the second
+ * argument to `expect`.
+ *
+ * expect(1).to.be.a('string', 'nooo why fail??');
+ * expect(1, 'nooo why fail??').to.be.a('string');
+ *
+ * `.a` can also be used as a language chain to improve the readability of
+ * your assertions.
+ *
+ * expect({b: 2}).to.have.a.property('b');
+ *
+ * The alias `.an` can be used interchangeably with `.a`.
+ *
+ * @name a
+ * @alias an
+ * @param {String} type
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function an (type, msg) {
+ if (msg) flag(this, 'message', msg);
+ type = type.toLowerCase();
+ var obj = flag(this, 'object')
+ , article = ~[ 'a', 'e', 'i', 'o', 'u' ].indexOf(type.charAt(0)) ? 'an ' : 'a ';
+
+ this.assert(
+ type === _.type(obj).toLowerCase()
+ , 'expected #{this} to be ' + article + type
+ , 'expected #{this} not to be ' + article + type
+ );
+ }
+
+ Assertion.addChainableMethod('an', an);
+ Assertion.addChainableMethod('a', an);
+
+ /**
+ * ### .include(val[, msg])
+ *
+ * When the target is a string, `.include` asserts that the given string `val`
+ * is a substring of the target.
+ *
+ * expect('foobar').to.include('foo');
+ *
+ * When the target is an array, `.include` asserts that the given `val` is a
+ * member of the target.
+ *
+ * expect([1, 2, 3]).to.include(2);
+ *
+ * When the target is an object, `.include` asserts that the given object
+ * `val`'s properties are a subset of the target's properties.
+ *
+ * expect({a: 1, b: 2, c: 3}).to.include({a: 1, b: 2});
+ *
+ * When the target is a Set or WeakSet, `.include` asserts that the given `val` is a
+ * member of the target. SameValueZero equality algorithm is used.
+ *
+ * expect(new Set([1, 2])).to.include(2);
+ *
+ * When the target is a Map, `.include` asserts that the given `val` is one of
+ * the values of the target. SameValueZero equality algorithm is used.
+ *
+ * expect(new Map([['a', 1], ['b', 2]])).to.include(2);
+ *
+ * Because `.include` does different things based on the target's type, it's
+ * important to check the target's type before using `.include`. See the `.a`
+ * doc for info on testing a target's type.
+ *
+ * expect([1, 2, 3]).to.be.an('array').that.includes(2);
+ *
+ * By default, strict (`===`) equality is used to compare array members and
+ * object properties. Add `.deep` earlier in the chain to use deep equality
+ * instead (WeakSet targets are not supported). See the `deep-eql` project
+ * page for info on the deep equality algorithm: https://github.com/chaijs/deep-eql.
+ *
+ * // Target array deeply (but not strictly) includes `{a: 1}`
+ * expect([{a: 1}]).to.deep.include({a: 1});
+ * expect([{a: 1}]).to.not.include({a: 1});
+ *
+ * // Target object deeply (but not strictly) includes `x: {a: 1}`
+ * expect({x: {a: 1}}).to.deep.include({x: {a: 1}});
+ * expect({x: {a: 1}}).to.not.include({x: {a: 1}});
+ *
+ * By default, all of the target's properties are searched when working with
+ * objects. This includes properties that are inherited and/or non-enumerable.
+ * Add `.own` earlier in the chain to exclude the target's inherited
+ * properties from the search.
+ *
+ * Object.prototype.b = 2;
+ *
+ * expect({a: 1}).to.own.include({a: 1});
+ * expect({a: 1}).to.include({b: 2}).but.not.own.include({b: 2});
+ *
+ * Note that a target object is always only searched for `val`'s own
+ * enumerable properties.
+ *
+ * `.deep` and `.own` can be combined.
+ *
+ * expect({a: {b: 2}}).to.deep.own.include({a: {b: 2}});
+ *
+ * Add `.nested` earlier in the chain to enable dot- and bracket-notation when
+ * referencing nested properties.
+ *
+ * expect({a: {b: ['x', 'y']}}).to.nested.include({'a.b[1]': 'y'});
+ *
+ * If `.` or `[]` are part of an actual property name, they can be escaped by
+ * adding two backslashes before them.
+ *
+ * expect({'.a': {'[b]': 2}}).to.nested.include({'\\.a.\\[b\\]': 2});
+ *
+ * `.deep` and `.nested` can be combined.
+ *
+ * expect({a: {b: [{c: 3}]}}).to.deep.nested.include({'a.b[0]': {c: 3}});
+ *
+ * `.own` and `.nested` cannot be combined.
+ *
+ * Add `.not` earlier in the chain to negate `.include`.
+ *
+ * expect('foobar').to.not.include('taco');
+ * expect([1, 2, 3]).to.not.include(4);
+ *
+ * However, it's dangerous to negate `.include` when the target is an object.
+ * The problem is that it creates uncertain expectations by asserting that the
+ * target object doesn't have all of `val`'s key/value pairs but may or may
+ * not have some of them. It's often best to identify the exact output that's
+ * expected, and then write an assertion that only accepts that exact output.
+ *
+ * When the target object isn't even expected to have `val`'s keys, it's
+ * often best to assert exactly that.
+ *
+ * expect({c: 3}).to.not.have.any.keys('a', 'b'); // Recommended
+ * expect({c: 3}).to.not.include({a: 1, b: 2}); // Not recommended
+ *
+ * When the target object is expected to have `val`'s keys, it's often best to
+ * assert that each of the properties has its expected value, rather than
+ * asserting that each property doesn't have one of many unexpected values.
+ *
+ * expect({a: 3, b: 4}).to.include({a: 3, b: 4}); // Recommended
+ * expect({a: 3, b: 4}).to.not.include({a: 1, b: 2}); // Not recommended
+ *
+ * `.include` accepts an optional `msg` argument which is a custom error
+ * message to show when the assertion fails. The message can also be given as
+ * the second argument to `expect`.
+ *
+ * expect([1, 2, 3]).to.include(4, 'nooo why fail??');
+ * expect([1, 2, 3], 'nooo why fail??').to.include(4);
+ *
+ * `.include` can also be used as a language chain, causing all `.members` and
+ * `.keys` assertions that follow in the chain to require the target to be a
+ * superset of the expected set, rather than an identical set. Note that
+ * `.members` ignores duplicates in the subset when `.include` is added.
+ *
+ * // Target object's keys are a superset of ['a', 'b'] but not identical
+ * expect({a: 1, b: 2, c: 3}).to.include.all.keys('a', 'b');
+ * expect({a: 1, b: 2, c: 3}).to.not.have.all.keys('a', 'b');
+ *
+ * // Target array is a superset of [1, 2] but not identical
+ * expect([1, 2, 3]).to.include.members([1, 2]);
+ * expect([1, 2, 3]).to.not.have.members([1, 2]);
+ *
+ * // Duplicates in the subset are ignored
+ * expect([1, 2, 3]).to.include.members([1, 2, 2, 2]);
+ *
+ * Note that adding `.any` earlier in the chain causes the `.keys` assertion
+ * to ignore `.include`.
+ *
+ * // Both assertions are identical
+ * expect({a: 1}).to.include.any.keys('a', 'b');
+ * expect({a: 1}).to.have.any.keys('a', 'b');
+ *
+ * The aliases `.includes`, `.contain`, and `.contains` can be used
+ * interchangeably with `.include`.
+ *
+ * @name include
+ * @alias contain
+ * @alias includes
+ * @alias contains
+ * @param {Mixed} val
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function SameValueZero(a, b) {
+ return (_.isNaN(a) && _.isNaN(b)) || a === b;
+ }
+
+ function includeChainingBehavior () {
+ flag(this, 'contains', true);
+ }
+
+ function include (val, msg) {
+ if (msg) flag(this, 'message', msg);
+
+ var obj = flag(this, 'object')
+ , objType = _.type(obj).toLowerCase()
+ , flagMsg = flag(this, 'message')
+ , negate = flag(this, 'negate')
+ , ssfi = flag(this, 'ssfi')
+ , isDeep = flag(this, 'deep')
+ , descriptor = isDeep ? 'deep ' : '';
+
+ flagMsg = flagMsg ? flagMsg + ': ' : '';
+
+ var included = false;
+
+ switch (objType) {
+ case 'string':
+ included = obj.indexOf(val) !== -1;
+ break;
+
+ case 'weakset':
+ if (isDeep) {
+ throw new AssertionError(
+ flagMsg + 'unable to use .deep.include with WeakSet',
+ undefined,
+ ssfi
+ );
+ }
+
+ included = obj.has(val);
+ break;
+
+ case 'map':
+ var isEql = isDeep ? _.eql : SameValueZero;
+ obj.forEach(function (item) {
+ included = included || isEql(item, val);
+ });
+ break;
+
+ case 'set':
+ if (isDeep) {
+ obj.forEach(function (item) {
+ included = included || _.eql(item, val);
+ });
+ } else {
+ included = obj.has(val);
+ }
+ break;
+
+ case 'array':
+ if (isDeep) {
+ included = obj.some(function (item) {
+ return _.eql(item, val);
+ })
+ } else {
+ included = obj.indexOf(val) !== -1;
+ }
+ break;
+
+ default:
+ // This block is for asserting a subset of properties in an object.
+ // `_.expectTypes` isn't used here because `.include` should work with
+ // objects with a custom `@@toStringTag`.
+ if (val !== Object(val)) {
+ throw new AssertionError(
+ flagMsg + 'object tested must be an array, a map, an object,'
+ + ' a set, a string, or a weakset, but ' + objType + ' given',
+ undefined,
+ ssfi
+ );
+ }
+
+ var props = Object.keys(val)
+ , firstErr = null
+ , numErrs = 0;
+
+ props.forEach(function (prop) {
+ var propAssertion = new Assertion(obj);
+ _.transferFlags(this, propAssertion, true);
+ flag(propAssertion, 'lockSsfi', true);
+
+ if (!negate || props.length === 1) {
+ propAssertion.property(prop, val[prop]);
+ return;
+ }
+
+ try {
+ propAssertion.property(prop, val[prop]);
+ } catch (err) {
+ if (!_.checkError.compatibleConstructor(err, AssertionError)) {
+ throw err;
+ }
+ if (firstErr === null) firstErr = err;
+ numErrs++;
+ }
+ }, this);
+
+ // When validating .not.include with multiple properties, we only want
+ // to throw an assertion error if all of the properties are included,
+ // in which case we throw the first property assertion error that we
+ // encountered.
+ if (negate && props.length > 1 && numErrs === props.length) {
+ throw firstErr;
+ }
+ return;
+ }
+
+ // Assert inclusion in collection or substring in a string.
+ this.assert(
+ included
+ , 'expected #{this} to ' + descriptor + 'include ' + _.inspect(val)
+ , 'expected #{this} to not ' + descriptor + 'include ' + _.inspect(val));
+ }
+
+ Assertion.addChainableMethod('include', include, includeChainingBehavior);
+ Assertion.addChainableMethod('contain', include, includeChainingBehavior);
+ Assertion.addChainableMethod('contains', include, includeChainingBehavior);
+ Assertion.addChainableMethod('includes', include, includeChainingBehavior);
+
+ /**
+ * ### .ok
+ *
+ * Asserts that the target is a truthy value (considered `true` in boolean context).
+ * However, it's often best to assert that the target is strictly (`===`) or
+ * deeply equal to its expected value.
+ *
+ * expect(1).to.equal(1); // Recommended
+ * expect(1).to.be.ok; // Not recommended
+ *
+ * expect(true).to.be.true; // Recommended
+ * expect(true).to.be.ok; // Not recommended
+ *
+ * Add `.not` earlier in the chain to negate `.ok`.
+ *
+ * expect(0).to.equal(0); // Recommended
+ * expect(0).to.not.be.ok; // Not recommended
+ *
+ * expect(false).to.be.false; // Recommended
+ * expect(false).to.not.be.ok; // Not recommended
+ *
+ * expect(null).to.be.null; // Recommended
+ * expect(null).to.not.be.ok; // Not recommended
+ *
+ * expect(undefined).to.be.undefined; // Recommended
+ * expect(undefined).to.not.be.ok; // Not recommended
+ *
+ * A custom error message can be given as the second argument to `expect`.
+ *
+ * expect(false, 'nooo why fail??').to.be.ok;
+ *
+ * @name ok
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('ok', function () {
+ this.assert(
+ flag(this, 'object')
+ , 'expected #{this} to be truthy'
+ , 'expected #{this} to be falsy');
+ });
+
+ /**
+ * ### .true
+ *
+ * Asserts that the target is strictly (`===`) equal to `true`.
+ *
+ * expect(true).to.be.true;
+ *
+ * Add `.not` earlier in the chain to negate `.true`. However, it's often best
+ * to assert that the target is equal to its expected value, rather than not
+ * equal to `true`.
+ *
+ * expect(false).to.be.false; // Recommended
+ * expect(false).to.not.be.true; // Not recommended
+ *
+ * expect(1).to.equal(1); // Recommended
+ * expect(1).to.not.be.true; // Not recommended
+ *
+ * A custom error message can be given as the second argument to `expect`.
+ *
+ * expect(false, 'nooo why fail??').to.be.true;
+ *
+ * @name true
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('true', function () {
+ this.assert(
+ true === flag(this, 'object')
+ , 'expected #{this} to be true'
+ , 'expected #{this} to be false'
+ , flag(this, 'negate') ? false : true
+ );
+ });
+
+ /**
+ * ### .false
+ *
+ * Asserts that the target is strictly (`===`) equal to `false`.
+ *
+ * expect(false).to.be.false;
+ *
+ * Add `.not` earlier in the chain to negate `.false`. However, it's often
+ * best to assert that the target is equal to its expected value, rather than
+ * not equal to `false`.
+ *
+ * expect(true).to.be.true; // Recommended
+ * expect(true).to.not.be.false; // Not recommended
+ *
+ * expect(1).to.equal(1); // Recommended
+ * expect(1).to.not.be.false; // Not recommended
+ *
+ * A custom error message can be given as the second argument to `expect`.
+ *
+ * expect(true, 'nooo why fail??').to.be.false;
+ *
+ * @name false
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('false', function () {
+ this.assert(
+ false === flag(this, 'object')
+ , 'expected #{this} to be false'
+ , 'expected #{this} to be true'
+ , flag(this, 'negate') ? true : false
+ );
+ });
+
+ /**
+ * ### .null
+ *
+ * Asserts that the target is strictly (`===`) equal to `null`.
+ *
+ * expect(null).to.be.null;
+ *
+ * Add `.not` earlier in the chain to negate `.null`. However, it's often best
+ * to assert that the target is equal to its expected value, rather than not
+ * equal to `null`.
+ *
+ * expect(1).to.equal(1); // Recommended
+ * expect(1).to.not.be.null; // Not recommended
+ *
+ * A custom error message can be given as the second argument to `expect`.
+ *
+ * expect(42, 'nooo why fail??').to.be.null;
+ *
+ * @name null
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('null', function () {
+ this.assert(
+ null === flag(this, 'object')
+ , 'expected #{this} to be null'
+ , 'expected #{this} not to be null'
+ );
+ });
+
+ /**
+ * ### .undefined
+ *
+ * Asserts that the target is strictly (`===`) equal to `undefined`.
+ *
+ * expect(undefined).to.be.undefined;
+ *
+ * Add `.not` earlier in the chain to negate `.undefined`. However, it's often
+ * best to assert that the target is equal to its expected value, rather than
+ * not equal to `undefined`.
+ *
+ * expect(1).to.equal(1); // Recommended
+ * expect(1).to.not.be.undefined; // Not recommended
+ *
+ * A custom error message can be given as the second argument to `expect`.
+ *
+ * expect(42, 'nooo why fail??').to.be.undefined;
+ *
+ * @name undefined
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('undefined', function () {
+ this.assert(
+ undefined === flag(this, 'object')
+ , 'expected #{this} to be undefined'
+ , 'expected #{this} not to be undefined'
+ );
+ });
+
+ /**
+ * ### .NaN
+ *
+ * Asserts that the target is exactly `NaN`.
+ *
+ * expect(NaN).to.be.NaN;
+ *
+ * Add `.not` earlier in the chain to negate `.NaN`. However, it's often best
+ * to assert that the target is equal to its expected value, rather than not
+ * equal to `NaN`.
+ *
+ * expect('foo').to.equal('foo'); // Recommended
+ * expect('foo').to.not.be.NaN; // Not recommended
+ *
+ * A custom error message can be given as the second argument to `expect`.
+ *
+ * expect(42, 'nooo why fail??').to.be.NaN;
+ *
+ * @name NaN
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('NaN', function () {
+ this.assert(
+ _.isNaN(flag(this, 'object'))
+ , 'expected #{this} to be NaN'
+ , 'expected #{this} not to be NaN'
+ );
+ });
+
+ /**
+ * ### .exist
+ *
+ * Asserts that the target is not strictly (`===`) equal to either `null` or
+ * `undefined`. However, it's often best to assert that the target is equal to
+ * its expected value.
+ *
+ * expect(1).to.equal(1); // Recommended
+ * expect(1).to.exist; // Not recommended
+ *
+ * expect(0).to.equal(0); // Recommended
+ * expect(0).to.exist; // Not recommended
+ *
+ * Add `.not` earlier in the chain to negate `.exist`.
+ *
+ * expect(null).to.be.null; // Recommended
+ * expect(null).to.not.exist; // Not recommended
+ *
+ * expect(undefined).to.be.undefined; // Recommended
+ * expect(undefined).to.not.exist; // Not recommended
+ *
+ * A custom error message can be given as the second argument to `expect`.
+ *
+ * expect(null, 'nooo why fail??').to.exist;
+ *
+ * @name exist
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('exist', function () {
+ var val = flag(this, 'object');
+ this.assert(
+ val !== null && val !== undefined
+ , 'expected #{this} to exist'
+ , 'expected #{this} to not exist'
+ );
+ });
+
+ /**
+ * ### .empty
+ *
+ * When the target is a string or array, `.empty` asserts that the target's
+ * `length` property is strictly (`===`) equal to `0`.
+ *
+ * expect([]).to.be.empty;
+ * expect('').to.be.empty;
+ *
+ * When the target is a map or set, `.empty` asserts that the target's `size`
+ * property is strictly equal to `0`.
+ *
+ * expect(new Set()).to.be.empty;
+ * expect(new Map()).to.be.empty;
+ *
+ * When the target is a non-function object, `.empty` asserts that the target
+ * doesn't have any own enumerable properties. Properties with Symbol-based
+ * keys are excluded from the count.
+ *
+ * expect({}).to.be.empty;
+ *
+ * Because `.empty` does different things based on the target's type, it's
+ * important to check the target's type before using `.empty`. See the `.a`
+ * doc for info on testing a target's type.
+ *
+ * expect([]).to.be.an('array').that.is.empty;
+ *
+ * Add `.not` earlier in the chain to negate `.empty`. However, it's often
+ * best to assert that the target contains its expected number of values,
+ * rather than asserting that it's not empty.
+ *
+ * expect([1, 2, 3]).to.have.lengthOf(3); // Recommended
+ * expect([1, 2, 3]).to.not.be.empty; // Not recommended
+ *
+ * expect(new Set([1, 2, 3])).to.have.property('size', 3); // Recommended
+ * expect(new Set([1, 2, 3])).to.not.be.empty; // Not recommended
+ *
+ * expect(Object.keys({a: 1})).to.have.lengthOf(1); // Recommended
+ * expect({a: 1}).to.not.be.empty; // Not recommended
+ *
+ * A custom error message can be given as the second argument to `expect`.
+ *
+ * expect([1, 2, 3], 'nooo why fail??').to.be.empty;
+ *
+ * @name empty
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('empty', function () {
+ var val = flag(this, 'object')
+ , ssfi = flag(this, 'ssfi')
+ , flagMsg = flag(this, 'message')
+ , itemsCount;
+
+ flagMsg = flagMsg ? flagMsg + ': ' : '';
+
+ switch (_.type(val).toLowerCase()) {
+ case 'array':
+ case 'string':
+ itemsCount = val.length;
+ break;
+ case 'map':
+ case 'set':
+ itemsCount = val.size;
+ break;
+ case 'weakmap':
+ case 'weakset':
+ throw new AssertionError(
+ flagMsg + '.empty was passed a weak collection',
+ undefined,
+ ssfi
+ );
+ case 'function':
+ var msg = flagMsg + '.empty was passed a function ' + _.getName(val);
+ throw new AssertionError(msg.trim(), undefined, ssfi);
+ default:
+ if (val !== Object(val)) {
+ throw new AssertionError(
+ flagMsg + '.empty was passed non-string primitive ' + _.inspect(val),
+ undefined,
+ ssfi
+ );
+ }
+ itemsCount = Object.keys(val).length;
+ }
+
+ this.assert(
+ 0 === itemsCount
+ , 'expected #{this} to be empty'
+ , 'expected #{this} not to be empty'
+ );
+ });
+
+ /**
+ * ### .arguments
+ *
+ * Asserts that the target is an `arguments` object.
+ *
+ * function test () {
+ * expect(arguments).to.be.arguments;
+ * }
+ *
+ * test();
+ *
+ * Add `.not` earlier in the chain to negate `.arguments`. However, it's often
+ * best to assert which type the target is expected to be, rather than
+ * asserting that its not an `arguments` object.
+ *
+ * expect('foo').to.be.a('string'); // Recommended
+ * expect('foo').to.not.be.arguments; // Not recommended
+ *
+ * A custom error message can be given as the second argument to `expect`.
+ *
+ * expect({}, 'nooo why fail??').to.be.arguments;
+ *
+ * The alias `.Arguments` can be used interchangeably with `.arguments`.
+ *
+ * @name arguments
+ * @alias Arguments
+ * @namespace BDD
+ * @api public
+ */
+
+ function checkArguments () {
+ var obj = flag(this, 'object')
+ , type = _.type(obj);
+ this.assert(
+ 'Arguments' === type
+ , 'expected #{this} to be arguments but got ' + type
+ , 'expected #{this} to not be arguments'
+ );
+ }
+
+ Assertion.addProperty('arguments', checkArguments);
+ Assertion.addProperty('Arguments', checkArguments);
+
+ /**
+ * ### .equal(val[, msg])
+ *
+ * Asserts that the target is strictly (`===`) equal to the given `val`.
+ *
+ * expect(1).to.equal(1);
+ * expect('foo').to.equal('foo');
+ *
+ * Add `.deep` earlier in the chain to use deep equality instead. See the
+ * `deep-eql` project page for info on the deep equality algorithm:
+ * https://github.com/chaijs/deep-eql.
+ *
+ * // Target object deeply (but not strictly) equals `{a: 1}`
+ * expect({a: 1}).to.deep.equal({a: 1});
+ * expect({a: 1}).to.not.equal({a: 1});
+ *
+ * // Target array deeply (but not strictly) equals `[1, 2]`
+ * expect([1, 2]).to.deep.equal([1, 2]);
+ * expect([1, 2]).to.not.equal([1, 2]);
+ *
+ * Add `.not` earlier in the chain to negate `.equal`. However, it's often
+ * best to assert that the target is equal to its expected value, rather than
+ * not equal to one of countless unexpected values.
+ *
+ * expect(1).to.equal(1); // Recommended
+ * expect(1).to.not.equal(2); // Not recommended
+ *
+ * `.equal` accepts an optional `msg` argument which is a custom error message
+ * to show when the assertion fails. The message can also be given as the
+ * second argument to `expect`.
+ *
+ * expect(1).to.equal(2, 'nooo why fail??');
+ * expect(1, 'nooo why fail??').to.equal(2);
+ *
+ * The aliases `.equals` and `eq` can be used interchangeably with `.equal`.
+ *
+ * @name equal
+ * @alias equals
+ * @alias eq
+ * @param {Mixed} val
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function assertEqual (val, msg) {
+ if (msg) flag(this, 'message', msg);
+ var obj = flag(this, 'object');
+ if (flag(this, 'deep')) {
+ var prevLockSsfi = flag(this, 'lockSsfi');
+ flag(this, 'lockSsfi', true);
+ this.eql(val);
+ flag(this, 'lockSsfi', prevLockSsfi);
+ } else {
+ this.assert(
+ val === obj
+ , 'expected #{this} to equal #{exp}'
+ , 'expected #{this} to not equal #{exp}'
+ , val
+ , this._obj
+ , true
+ );
+ }
+ }
+
+ Assertion.addMethod('equal', assertEqual);
+ Assertion.addMethod('equals', assertEqual);
+ Assertion.addMethod('eq', assertEqual);
+
+ /**
+ * ### .eql(obj[, msg])
+ *
+ * Asserts that the target is deeply equal to the given `obj`. See the
+ * `deep-eql` project page for info on the deep equality algorithm:
+ * https://github.com/chaijs/deep-eql.
+ *
+ * // Target object is deeply (but not strictly) equal to {a: 1}
+ * expect({a: 1}).to.eql({a: 1}).but.not.equal({a: 1});
+ *
+ * // Target array is deeply (but not strictly) equal to [1, 2]
+ * expect([1, 2]).to.eql([1, 2]).but.not.equal([1, 2]);
+ *
+ * Add `.not` earlier in the chain to negate `.eql`. However, it's often best
+ * to assert that the target is deeply equal to its expected value, rather
+ * than not deeply equal to one of countless unexpected values.
+ *
+ * expect({a: 1}).to.eql({a: 1}); // Recommended
+ * expect({a: 1}).to.not.eql({b: 2}); // Not recommended
+ *
+ * `.eql` accepts an optional `msg` argument which is a custom error message
+ * to show when the assertion fails. The message can also be given as the
+ * second argument to `expect`.
+ *
+ * expect({a: 1}).to.eql({b: 2}, 'nooo why fail??');
+ * expect({a: 1}, 'nooo why fail??').to.eql({b: 2});
+ *
+ * The alias `.eqls` can be used interchangeably with `.eql`.
+ *
+ * The `.deep.equal` assertion is almost identical to `.eql` but with one
+ * difference: `.deep.equal` causes deep equality comparisons to also be used
+ * for any other assertions that follow in the chain.
+ *
+ * @name eql
+ * @alias eqls
+ * @param {Mixed} obj
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function assertEql(obj, msg) {
+ if (msg) flag(this, 'message', msg);
+ this.assert(
+ _.eql(obj, flag(this, 'object'))
+ , 'expected #{this} to deeply equal #{exp}'
+ , 'expected #{this} to not deeply equal #{exp}'
+ , obj
+ , this._obj
+ , true
+ );
+ }
+
+ Assertion.addMethod('eql', assertEql);
+ Assertion.addMethod('eqls', assertEql);
+
+ /**
+ * ### .above(n[, msg])
+ *
+ * Asserts that the target is a number or a date greater than the given number or date `n` respectively.
+ * However, it's often best to assert that the target is equal to its expected
+ * value.
+ *
+ * expect(2).to.equal(2); // Recommended
+ * expect(2).to.be.above(1); // Not recommended
+ *
+ * Add `.lengthOf` earlier in the chain to assert that the target's `length`
+ * or `size` is greater than the given number `n`.
+ *
+ * expect('foo').to.have.lengthOf(3); // Recommended
+ * expect('foo').to.have.lengthOf.above(2); // Not recommended
+ *
+ * expect([1, 2, 3]).to.have.lengthOf(3); // Recommended
+ * expect([1, 2, 3]).to.have.lengthOf.above(2); // Not recommended
+ *
+ * Add `.not` earlier in the chain to negate `.above`.
+ *
+ * expect(2).to.equal(2); // Recommended
+ * expect(1).to.not.be.above(2); // Not recommended
+ *
+ * `.above` accepts an optional `msg` argument which is a custom error message
+ * to show when the assertion fails. The message can also be given as the
+ * second argument to `expect`.
+ *
+ * expect(1).to.be.above(2, 'nooo why fail??');
+ * expect(1, 'nooo why fail??').to.be.above(2);
+ *
+ * The aliases `.gt` and `.greaterThan` can be used interchangeably with
+ * `.above`.
+ *
+ * @name above
+ * @alias gt
+ * @alias greaterThan
+ * @param {Number} n
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function assertAbove (n, msg) {
+ if (msg) flag(this, 'message', msg);
+ var obj = flag(this, 'object')
+ , doLength = flag(this, 'doLength')
+ , flagMsg = flag(this, 'message')
+ , msgPrefix = ((flagMsg) ? flagMsg + ': ' : '')
+ , ssfi = flag(this, 'ssfi')
+ , objType = _.type(obj).toLowerCase()
+ , nType = _.type(n).toLowerCase()
+ , errorMessage
+ , shouldThrow = true;
+
+ if (doLength && objType !== 'map' && objType !== 'set') {
+ new Assertion(obj, flagMsg, ssfi, true).to.have.property('length');
+ }
+
+ if (!doLength && (objType === 'date' && nType !== 'date')) {
+ errorMessage = msgPrefix + 'the argument to above must be a date';
+ } else if (nType !== 'number' && (doLength || objType === 'number')) {
+ errorMessage = msgPrefix + 'the argument to above must be a number';
+ } else if (!doLength && (objType !== 'date' && objType !== 'number')) {
+ var printObj = (objType === 'string') ? "'" + obj + "'" : obj;
+ errorMessage = msgPrefix + 'expected ' + printObj + ' to be a number or a date';
+ } else {
+ shouldThrow = false;
+ }
+
+ if (shouldThrow) {
+ throw new AssertionError(errorMessage, undefined, ssfi);
+ }
+
+ if (doLength) {
+ var descriptor = 'length'
+ , itemsCount;
+ if (objType === 'map' || objType === 'set') {
+ descriptor = 'size';
+ itemsCount = obj.size;
+ } else {
+ itemsCount = obj.length;
+ }
+ this.assert(
+ itemsCount > n
+ , 'expected #{this} to have a ' + descriptor + ' above #{exp} but got #{act}'
+ , 'expected #{this} to not have a ' + descriptor + ' above #{exp}'
+ , n
+ , itemsCount
+ );
+ } else {
+ this.assert(
+ obj > n
+ , 'expected #{this} to be above #{exp}'
+ , 'expected #{this} to be at most #{exp}'
+ , n
+ );
+ }
+ }
+
+ Assertion.addMethod('above', assertAbove);
+ Assertion.addMethod('gt', assertAbove);
+ Assertion.addMethod('greaterThan', assertAbove);
+
+ /**
+ * ### .least(n[, msg])
+ *
+ * Asserts that the target is a number or a date greater than or equal to the given
+ * number or date `n` respectively. However, it's often best to assert that the target is equal to
+ * its expected value.
+ *
+ * expect(2).to.equal(2); // Recommended
+ * expect(2).to.be.at.least(1); // Not recommended
+ * expect(2).to.be.at.least(2); // Not recommended
+ *
+ * Add `.lengthOf` earlier in the chain to assert that the target's `length`
+ * or `size` is greater than or equal to the given number `n`.
+ *
+ * expect('foo').to.have.lengthOf(3); // Recommended
+ * expect('foo').to.have.lengthOf.at.least(2); // Not recommended
+ *
+ * expect([1, 2, 3]).to.have.lengthOf(3); // Recommended
+ * expect([1, 2, 3]).to.have.lengthOf.at.least(2); // Not recommended
+ *
+ * Add `.not` earlier in the chain to negate `.least`.
+ *
+ * expect(1).to.equal(1); // Recommended
+ * expect(1).to.not.be.at.least(2); // Not recommended
+ *
+ * `.least` accepts an optional `msg` argument which is a custom error message
+ * to show when the assertion fails. The message can also be given as the
+ * second argument to `expect`.
+ *
+ * expect(1).to.be.at.least(2, 'nooo why fail??');
+ * expect(1, 'nooo why fail??').to.be.at.least(2);
+ *
+ * The alias `.gte` can be used interchangeably with `.least`.
+ *
+ * @name least
+ * @alias gte
+ * @param {Number} n
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function assertLeast (n, msg) {
+ if (msg) flag(this, 'message', msg);
+ var obj = flag(this, 'object')
+ , doLength = flag(this, 'doLength')
+ , flagMsg = flag(this, 'message')
+ , msgPrefix = ((flagMsg) ? flagMsg + ': ' : '')
+ , ssfi = flag(this, 'ssfi')
+ , objType = _.type(obj).toLowerCase()
+ , nType = _.type(n).toLowerCase()
+ , errorMessage
+ , shouldThrow = true;
+
+ if (doLength && objType !== 'map' && objType !== 'set') {
+ new Assertion(obj, flagMsg, ssfi, true).to.have.property('length');
+ }
+
+ if (!doLength && (objType === 'date' && nType !== 'date')) {
+ errorMessage = msgPrefix + 'the argument to least must be a date';
+ } else if (nType !== 'number' && (doLength || objType === 'number')) {
+ errorMessage = msgPrefix + 'the argument to least must be a number';
+ } else if (!doLength && (objType !== 'date' && objType !== 'number')) {
+ var printObj = (objType === 'string') ? "'" + obj + "'" : obj;
+ errorMessage = msgPrefix + 'expected ' + printObj + ' to be a number or a date';
+ } else {
+ shouldThrow = false;
+ }
+
+ if (shouldThrow) {
+ throw new AssertionError(errorMessage, undefined, ssfi);
+ }
+
+ if (doLength) {
+ var descriptor = 'length'
+ , itemsCount;
+ if (objType === 'map' || objType === 'set') {
+ descriptor = 'size';
+ itemsCount = obj.size;
+ } else {
+ itemsCount = obj.length;
+ }
+ this.assert(
+ itemsCount >= n
+ , 'expected #{this} to have a ' + descriptor + ' at least #{exp} but got #{act}'
+ , 'expected #{this} to have a ' + descriptor + ' below #{exp}'
+ , n
+ , itemsCount
+ );
+ } else {
+ this.assert(
+ obj >= n
+ , 'expected #{this} to be at least #{exp}'
+ , 'expected #{this} to be below #{exp}'
+ , n
+ );
+ }
+ }
+
+ Assertion.addMethod('least', assertLeast);
+ Assertion.addMethod('gte', assertLeast);
+
+ /**
+ * ### .below(n[, msg])
+ *
+ * Asserts that the target is a number or a date less than the given number or date `n` respectively.
+ * However, it's often best to assert that the target is equal to its expected
+ * value.
+ *
+ * expect(1).to.equal(1); // Recommended
+ * expect(1).to.be.below(2); // Not recommended
+ *
+ * Add `.lengthOf` earlier in the chain to assert that the target's `length`
+ * or `size` is less than the given number `n`.
+ *
+ * expect('foo').to.have.lengthOf(3); // Recommended
+ * expect('foo').to.have.lengthOf.below(4); // Not recommended
+ *
+ * expect([1, 2, 3]).to.have.length(3); // Recommended
+ * expect([1, 2, 3]).to.have.lengthOf.below(4); // Not recommended
+ *
+ * Add `.not` earlier in the chain to negate `.below`.
+ *
+ * expect(2).to.equal(2); // Recommended
+ * expect(2).to.not.be.below(1); // Not recommended
+ *
+ * `.below` accepts an optional `msg` argument which is a custom error message
+ * to show when the assertion fails. The message can also be given as the
+ * second argument to `expect`.
+ *
+ * expect(2).to.be.below(1, 'nooo why fail??');
+ * expect(2, 'nooo why fail??').to.be.below(1);
+ *
+ * The aliases `.lt` and `.lessThan` can be used interchangeably with
+ * `.below`.
+ *
+ * @name below
+ * @alias lt
+ * @alias lessThan
+ * @param {Number} n
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function assertBelow (n, msg) {
+ if (msg) flag(this, 'message', msg);
+ var obj = flag(this, 'object')
+ , doLength = flag(this, 'doLength')
+ , flagMsg = flag(this, 'message')
+ , msgPrefix = ((flagMsg) ? flagMsg + ': ' : '')
+ , ssfi = flag(this, 'ssfi')
+ , objType = _.type(obj).toLowerCase()
+ , nType = _.type(n).toLowerCase()
+ , errorMessage
+ , shouldThrow = true;
+
+ if (doLength && objType !== 'map' && objType !== 'set') {
+ new Assertion(obj, flagMsg, ssfi, true).to.have.property('length');
+ }
+
+ if (!doLength && (objType === 'date' && nType !== 'date')) {
+ errorMessage = msgPrefix + 'the argument to below must be a date';
+ } else if (nType !== 'number' && (doLength || objType === 'number')) {
+ errorMessage = msgPrefix + 'the argument to below must be a number';
+ } else if (!doLength && (objType !== 'date' && objType !== 'number')) {
+ var printObj = (objType === 'string') ? "'" + obj + "'" : obj;
+ errorMessage = msgPrefix + 'expected ' + printObj + ' to be a number or a date';
+ } else {
+ shouldThrow = false;
+ }
+
+ if (shouldThrow) {
+ throw new AssertionError(errorMessage, undefined, ssfi);
+ }
+
+ if (doLength) {
+ var descriptor = 'length'
+ , itemsCount;
+ if (objType === 'map' || objType === 'set') {
+ descriptor = 'size';
+ itemsCount = obj.size;
+ } else {
+ itemsCount = obj.length;
+ }
+ this.assert(
+ itemsCount < n
+ , 'expected #{this} to have a ' + descriptor + ' below #{exp} but got #{act}'
+ , 'expected #{this} to not have a ' + descriptor + ' below #{exp}'
+ , n
+ , itemsCount
+ );
+ } else {
+ this.assert(
+ obj < n
+ , 'expected #{this} to be below #{exp}'
+ , 'expected #{this} to be at least #{exp}'
+ , n
+ );
+ }
+ }
+
+ Assertion.addMethod('below', assertBelow);
+ Assertion.addMethod('lt', assertBelow);
+ Assertion.addMethod('lessThan', assertBelow);
+
+ /**
+ * ### .most(n[, msg])
+ *
+ * Asserts that the target is a number or a date less than or equal to the given number
+ * or date `n` respectively. However, it's often best to assert that the target is equal to its
+ * expected value.
+ *
+ * expect(1).to.equal(1); // Recommended
+ * expect(1).to.be.at.most(2); // Not recommended
+ * expect(1).to.be.at.most(1); // Not recommended
+ *
+ * Add `.lengthOf` earlier in the chain to assert that the target's `length`
+ * or `size` is less than or equal to the given number `n`.
+ *
+ * expect('foo').to.have.lengthOf(3); // Recommended
+ * expect('foo').to.have.lengthOf.at.most(4); // Not recommended
+ *
+ * expect([1, 2, 3]).to.have.lengthOf(3); // Recommended
+ * expect([1, 2, 3]).to.have.lengthOf.at.most(4); // Not recommended
+ *
+ * Add `.not` earlier in the chain to negate `.most`.
+ *
+ * expect(2).to.equal(2); // Recommended
+ * expect(2).to.not.be.at.most(1); // Not recommended
+ *
+ * `.most` accepts an optional `msg` argument which is a custom error message
+ * to show when the assertion fails. The message can also be given as the
+ * second argument to `expect`.
+ *
+ * expect(2).to.be.at.most(1, 'nooo why fail??');
+ * expect(2, 'nooo why fail??').to.be.at.most(1);
+ *
+ * The alias `.lte` can be used interchangeably with `.most`.
+ *
+ * @name most
+ * @alias lte
+ * @param {Number} n
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function assertMost (n, msg) {
+ if (msg) flag(this, 'message', msg);
+ var obj = flag(this, 'object')
+ , doLength = flag(this, 'doLength')
+ , flagMsg = flag(this, 'message')
+ , msgPrefix = ((flagMsg) ? flagMsg + ': ' : '')
+ , ssfi = flag(this, 'ssfi')
+ , objType = _.type(obj).toLowerCase()
+ , nType = _.type(n).toLowerCase()
+ , errorMessage
+ , shouldThrow = true;
+
+ if (doLength && objType !== 'map' && objType !== 'set') {
+ new Assertion(obj, flagMsg, ssfi, true).to.have.property('length');
+ }
+
+ if (!doLength && (objType === 'date' && nType !== 'date')) {
+ errorMessage = msgPrefix + 'the argument to most must be a date';
+ } else if (nType !== 'number' && (doLength || objType === 'number')) {
+ errorMessage = msgPrefix + 'the argument to most must be a number';
+ } else if (!doLength && (objType !== 'date' && objType !== 'number')) {
+ var printObj = (objType === 'string') ? "'" + obj + "'" : obj;
+ errorMessage = msgPrefix + 'expected ' + printObj + ' to be a number or a date';
+ } else {
+ shouldThrow = false;
+ }
+
+ if (shouldThrow) {
+ throw new AssertionError(errorMessage, undefined, ssfi);
+ }
+
+ if (doLength) {
+ var descriptor = 'length'
+ , itemsCount;
+ if (objType === 'map' || objType === 'set') {
+ descriptor = 'size';
+ itemsCount = obj.size;
+ } else {
+ itemsCount = obj.length;
+ }
+ this.assert(
+ itemsCount <= n
+ , 'expected #{this} to have a ' + descriptor + ' at most #{exp} but got #{act}'
+ , 'expected #{this} to have a ' + descriptor + ' above #{exp}'
+ , n
+ , itemsCount
+ );
+ } else {
+ this.assert(
+ obj <= n
+ , 'expected #{this} to be at most #{exp}'
+ , 'expected #{this} to be above #{exp}'
+ , n
+ );
+ }
+ }
+
+ Assertion.addMethod('most', assertMost);
+ Assertion.addMethod('lte', assertMost);
+
+ /**
+ * ### .within(start, finish[, msg])
+ *
+ * Asserts that the target is a number or a date greater than or equal to the given
+ * number or date `start`, and less than or equal to the given number or date `finish` respectively.
+ * However, it's often best to assert that the target is equal to its expected
+ * value.
+ *
+ * expect(2).to.equal(2); // Recommended
+ * expect(2).to.be.within(1, 3); // Not recommended
+ * expect(2).to.be.within(2, 3); // Not recommended
+ * expect(2).to.be.within(1, 2); // Not recommended
+ *
+ * Add `.lengthOf` earlier in the chain to assert that the target's `length`
+ * or `size` is greater than or equal to the given number `start`, and less
+ * than or equal to the given number `finish`.
+ *
+ * expect('foo').to.have.lengthOf(3); // Recommended
+ * expect('foo').to.have.lengthOf.within(2, 4); // Not recommended
+ *
+ * expect([1, 2, 3]).to.have.lengthOf(3); // Recommended
+ * expect([1, 2, 3]).to.have.lengthOf.within(2, 4); // Not recommended
+ *
+ * Add `.not` earlier in the chain to negate `.within`.
+ *
+ * expect(1).to.equal(1); // Recommended
+ * expect(1).to.not.be.within(2, 4); // Not recommended
+ *
+ * `.within` accepts an optional `msg` argument which is a custom error
+ * message to show when the assertion fails. The message can also be given as
+ * the second argument to `expect`.
+ *
+ * expect(4).to.be.within(1, 3, 'nooo why fail??');
+ * expect(4, 'nooo why fail??').to.be.within(1, 3);
+ *
+ * @name within
+ * @param {Number} start lower bound inclusive
+ * @param {Number} finish upper bound inclusive
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addMethod('within', function (start, finish, msg) {
+ if (msg) flag(this, 'message', msg);
+ var obj = flag(this, 'object')
+ , doLength = flag(this, 'doLength')
+ , flagMsg = flag(this, 'message')
+ , msgPrefix = ((flagMsg) ? flagMsg + ': ' : '')
+ , ssfi = flag(this, 'ssfi')
+ , objType = _.type(obj).toLowerCase()
+ , startType = _.type(start).toLowerCase()
+ , finishType = _.type(finish).toLowerCase()
+ , errorMessage
+ , shouldThrow = true
+ , range = (startType === 'date' && finishType === 'date')
+ ? start.toUTCString() + '..' + finish.toUTCString()
+ : start + '..' + finish;
+
+ if (doLength && objType !== 'map' && objType !== 'set') {
+ new Assertion(obj, flagMsg, ssfi, true).to.have.property('length');
+ }
+
+ if (!doLength && (objType === 'date' && (startType !== 'date' || finishType !== 'date'))) {
+ errorMessage = msgPrefix + 'the arguments to within must be dates';
+ } else if ((startType !== 'number' || finishType !== 'number') && (doLength || objType === 'number')) {
+ errorMessage = msgPrefix + 'the arguments to within must be numbers';
+ } else if (!doLength && (objType !== 'date' && objType !== 'number')) {
+ var printObj = (objType === 'string') ? "'" + obj + "'" : obj;
+ errorMessage = msgPrefix + 'expected ' + printObj + ' to be a number or a date';
+ } else {
+ shouldThrow = false;
+ }
+
+ if (shouldThrow) {
+ throw new AssertionError(errorMessage, undefined, ssfi);
+ }
+
+ if (doLength) {
+ var descriptor = 'length'
+ , itemsCount;
+ if (objType === 'map' || objType === 'set') {
+ descriptor = 'size';
+ itemsCount = obj.size;
+ } else {
+ itemsCount = obj.length;
+ }
+ this.assert(
+ itemsCount >= start && itemsCount <= finish
+ , 'expected #{this} to have a ' + descriptor + ' within ' + range
+ , 'expected #{this} to not have a ' + descriptor + ' within ' + range
+ );
+ } else {
+ this.assert(
+ obj >= start && obj <= finish
+ , 'expected #{this} to be within ' + range
+ , 'expected #{this} to not be within ' + range
+ );
+ }
+ });
+
+ /**
+ * ### .instanceof(constructor[, msg])
+ *
+ * Asserts that the target is an instance of the given `constructor`.
+ *
+ * function Cat () { }
+ *
+ * expect(new Cat()).to.be.an.instanceof(Cat);
+ * expect([1, 2]).to.be.an.instanceof(Array);
+ *
+ * Add `.not` earlier in the chain to negate `.instanceof`.
+ *
+ * expect({a: 1}).to.not.be.an.instanceof(Array);
+ *
+ * `.instanceof` accepts an optional `msg` argument which is a custom error
+ * message to show when the assertion fails. The message can also be given as
+ * the second argument to `expect`.
+ *
+ * expect(1).to.be.an.instanceof(Array, 'nooo why fail??');
+ * expect(1, 'nooo why fail??').to.be.an.instanceof(Array);
+ *
+ * Due to limitations in ES5, `.instanceof` may not always work as expected
+ * when using a transpiler such as Babel or TypeScript. In particular, it may
+ * produce unexpected results when subclassing built-in object such as
+ * `Array`, `Error`, and `Map`. See your transpiler's docs for details:
+ *
+ * - ([Babel](https://babeljs.io/docs/usage/caveats/#classes))
+ * - ([TypeScript](https://github.com/Microsoft/TypeScript/wiki/Breaking-Changes#extending-built-ins-like-error-array-and-map-may-no-longer-work))
+ *
+ * The alias `.instanceOf` can be used interchangeably with `.instanceof`.
+ *
+ * @name instanceof
+ * @param {Constructor} constructor
+ * @param {String} msg _optional_
+ * @alias instanceOf
+ * @namespace BDD
+ * @api public
+ */
+
+ function assertInstanceOf (constructor, msg) {
+ if (msg) flag(this, 'message', msg);
+
+ var target = flag(this, 'object')
+ var ssfi = flag(this, 'ssfi');
+ var flagMsg = flag(this, 'message');
+
+ try {
+ var isInstanceOf = target instanceof constructor;
+ } catch (err) {
+ if (err instanceof TypeError) {
+ flagMsg = flagMsg ? flagMsg + ': ' : '';
+ throw new AssertionError(
+ flagMsg + 'The instanceof assertion needs a constructor but '
+ + _.type(constructor) + ' was given.',
+ undefined,
+ ssfi
+ );
+ }
+ throw err;
+ }
+
+ var name = _.getName(constructor);
+ if (name === null) {
+ name = 'an unnamed constructor';
+ }
+
+ this.assert(
+ isInstanceOf
+ , 'expected #{this} to be an instance of ' + name
+ , 'expected #{this} to not be an instance of ' + name
+ );
+ };
+
+ Assertion.addMethod('instanceof', assertInstanceOf);
+ Assertion.addMethod('instanceOf', assertInstanceOf);
+
+ /**
+ * ### .property(name[, val[, msg]])
+ *
+ * Asserts that the target has a property with the given key `name`.
+ *
+ * expect({a: 1}).to.have.property('a');
+ *
+ * When `val` is provided, `.property` also asserts that the property's value
+ * is equal to the given `val`.
+ *
+ * expect({a: 1}).to.have.property('a', 1);
+ *
+ * By default, strict (`===`) equality is used. Add `.deep` earlier in the
+ * chain to use deep equality instead. See the `deep-eql` project page for
+ * info on the deep equality algorithm: https://github.com/chaijs/deep-eql.
+ *
+ * // Target object deeply (but not strictly) has property `x: {a: 1}`
+ * expect({x: {a: 1}}).to.have.deep.property('x', {a: 1});
+ * expect({x: {a: 1}}).to.not.have.property('x', {a: 1});
+ *
+ * The target's enumerable and non-enumerable properties are always included
+ * in the search. By default, both own and inherited properties are included.
+ * Add `.own` earlier in the chain to exclude inherited properties from the
+ * search.
+ *
+ * Object.prototype.b = 2;
+ *
+ * expect({a: 1}).to.have.own.property('a');
+ * expect({a: 1}).to.have.own.property('a', 1);
+ * expect({a: 1}).to.have.property('b');
+ * expect({a: 1}).to.not.have.own.property('b');
+ *
+ * `.deep` and `.own` can be combined.
+ *
+ * expect({x: {a: 1}}).to.have.deep.own.property('x', {a: 1});
+ *
+ * Add `.nested` earlier in the chain to enable dot- and bracket-notation when
+ * referencing nested properties.
+ *
+ * expect({a: {b: ['x', 'y']}}).to.have.nested.property('a.b[1]');
+ * expect({a: {b: ['x', 'y']}}).to.have.nested.property('a.b[1]', 'y');
+ *
+ * If `.` or `[]` are part of an actual property name, they can be escaped by
+ * adding two backslashes before them.
+ *
+ * expect({'.a': {'[b]': 'x'}}).to.have.nested.property('\\.a.\\[b\\]');
+ *
+ * `.deep` and `.nested` can be combined.
+ *
+ * expect({a: {b: [{c: 3}]}})
+ * .to.have.deep.nested.property('a.b[0]', {c: 3});
+ *
+ * `.own` and `.nested` cannot be combined.
+ *
+ * Add `.not` earlier in the chain to negate `.property`.
+ *
+ * expect({a: 1}).to.not.have.property('b');
+ *
+ * However, it's dangerous to negate `.property` when providing `val`. The
+ * problem is that it creates uncertain expectations by asserting that the
+ * target either doesn't have a property with the given key `name`, or that it
+ * does have a property with the given key `name` but its value isn't equal to
+ * the given `val`. It's often best to identify the exact output that's
+ * expected, and then write an assertion that only accepts that exact output.
+ *
+ * When the target isn't expected to have a property with the given key
+ * `name`, it's often best to assert exactly that.
+ *
+ * expect({b: 2}).to.not.have.property('a'); // Recommended
+ * expect({b: 2}).to.not.have.property('a', 1); // Not recommended
+ *
+ * When the target is expected to have a property with the given key `name`,
+ * it's often best to assert that the property has its expected value, rather
+ * than asserting that it doesn't have one of many unexpected values.
+ *
+ * expect({a: 3}).to.have.property('a', 3); // Recommended
+ * expect({a: 3}).to.not.have.property('a', 1); // Not recommended
+ *
+ * `.property` changes the target of any assertions that follow in the chain
+ * to be the value of the property from the original target object.
+ *
+ * expect({a: 1}).to.have.property('a').that.is.a('number');
+ *
+ * `.property` accepts an optional `msg` argument which is a custom error
+ * message to show when the assertion fails. The message can also be given as
+ * the second argument to `expect`. When not providing `val`, only use the
+ * second form.
+ *
+ * // Recommended
+ * expect({a: 1}).to.have.property('a', 2, 'nooo why fail??');
+ * expect({a: 1}, 'nooo why fail??').to.have.property('a', 2);
+ * expect({a: 1}, 'nooo why fail??').to.have.property('b');
+ *
+ * // Not recommended
+ * expect({a: 1}).to.have.property('b', undefined, 'nooo why fail??');
+ *
+ * The above assertion isn't the same thing as not providing `val`. Instead,
+ * it's asserting that the target object has a `b` property that's equal to
+ * `undefined`.
+ *
+ * The assertions `.ownProperty` and `.haveOwnProperty` can be used
+ * interchangeably with `.own.property`.
+ *
+ * @name property
+ * @param {String} name
+ * @param {Mixed} val (optional)
+ * @param {String} msg _optional_
+ * @returns value of property for chaining
+ * @namespace BDD
+ * @api public
+ */
+
+ function assertProperty (name, val, msg) {
+ if (msg) flag(this, 'message', msg);
+
+ var isNested = flag(this, 'nested')
+ , isOwn = flag(this, 'own')
+ , flagMsg = flag(this, 'message')
+ , obj = flag(this, 'object')
+ , ssfi = flag(this, 'ssfi')
+ , nameType = typeof name;
+
+ flagMsg = flagMsg ? flagMsg + ': ' : '';
+
+ if (isNested) {
+ if (nameType !== 'string') {
+ throw new AssertionError(
+ flagMsg + 'the argument to property must be a string when using nested syntax',
+ undefined,
+ ssfi
+ );
+ }
+ } else {
+ if (nameType !== 'string' && nameType !== 'number' && nameType !== 'symbol') {
+ throw new AssertionError(
+ flagMsg + 'the argument to property must be a string, number, or symbol',
+ undefined,
+ ssfi
+ );
+ }
+ }
+
+ if (isNested && isOwn) {
+ throw new AssertionError(
+ flagMsg + 'The "nested" and "own" flags cannot be combined.',
+ undefined,
+ ssfi
+ );
+ }
+
+ if (obj === null || obj === undefined) {
+ throw new AssertionError(
+ flagMsg + 'Target cannot be null or undefined.',
+ undefined,
+ ssfi
+ );
+ }
+
+ var isDeep = flag(this, 'deep')
+ , negate = flag(this, 'negate')
+ , pathInfo = isNested ? _.getPathInfo(obj, name) : null
+ , value = isNested ? pathInfo.value : obj[name];
+
+ var descriptor = '';
+ if (isDeep) descriptor += 'deep ';
+ if (isOwn) descriptor += 'own ';
+ if (isNested) descriptor += 'nested ';
+ descriptor += 'property ';
+
+ var hasProperty;
+ if (isOwn) hasProperty = Object.prototype.hasOwnProperty.call(obj, name);
+ else if (isNested) hasProperty = pathInfo.exists;
+ else hasProperty = _.hasProperty(obj, name);
+
+ // When performing a negated assertion for both name and val, merely having
+ // a property with the given name isn't enough to cause the assertion to
+ // fail. It must both have a property with the given name, and the value of
+ // that property must equal the given val. Therefore, skip this assertion in
+ // favor of the next.
+ if (!negate || arguments.length === 1) {
+ this.assert(
+ hasProperty
+ , 'expected #{this} to have ' + descriptor + _.inspect(name)
+ , 'expected #{this} to not have ' + descriptor + _.inspect(name));
+ }
+
+ if (arguments.length > 1) {
+ this.assert(
+ hasProperty && (isDeep ? _.eql(val, value) : val === value)
+ , 'expected #{this} to have ' + descriptor + _.inspect(name) + ' of #{exp}, but got #{act}'
+ , 'expected #{this} to not have ' + descriptor + _.inspect(name) + ' of #{act}'
+ , val
+ , value
+ );
+ }
+
+ flag(this, 'object', value);
+ }
+
+ Assertion.addMethod('property', assertProperty);
+
+ function assertOwnProperty (name, value, msg) {
+ flag(this, 'own', true);
+ assertProperty.apply(this, arguments);
+ }
+
+ Assertion.addMethod('ownProperty', assertOwnProperty);
+ Assertion.addMethod('haveOwnProperty', assertOwnProperty);
+
+ /**
+ * ### .ownPropertyDescriptor(name[, descriptor[, msg]])
+ *
+ * Asserts that the target has its own property descriptor with the given key
+ * `name`. Enumerable and non-enumerable properties are included in the
+ * search.
+ *
+ * expect({a: 1}).to.have.ownPropertyDescriptor('a');
+ *
+ * When `descriptor` is provided, `.ownPropertyDescriptor` also asserts that
+ * the property's descriptor is deeply equal to the given `descriptor`. See
+ * the `deep-eql` project page for info on the deep equality algorithm:
+ * https://github.com/chaijs/deep-eql.
+ *
+ * expect({a: 1}).to.have.ownPropertyDescriptor('a', {
+ * configurable: true,
+ * enumerable: true,
+ * writable: true,
+ * value: 1,
+ * });
+ *
+ * Add `.not` earlier in the chain to negate `.ownPropertyDescriptor`.
+ *
+ * expect({a: 1}).to.not.have.ownPropertyDescriptor('b');
+ *
+ * However, it's dangerous to negate `.ownPropertyDescriptor` when providing
+ * a `descriptor`. The problem is that it creates uncertain expectations by
+ * asserting that the target either doesn't have a property descriptor with
+ * the given key `name`, or that it does have a property descriptor with the
+ * given key `name` but its not deeply equal to the given `descriptor`. It's
+ * often best to identify the exact output that's expected, and then write an
+ * assertion that only accepts that exact output.
+ *
+ * When the target isn't expected to have a property descriptor with the given
+ * key `name`, it's often best to assert exactly that.
+ *
+ * // Recommended
+ * expect({b: 2}).to.not.have.ownPropertyDescriptor('a');
+ *
+ * // Not recommended
+ * expect({b: 2}).to.not.have.ownPropertyDescriptor('a', {
+ * configurable: true,
+ * enumerable: true,
+ * writable: true,
+ * value: 1,
+ * });
+ *
+ * When the target is expected to have a property descriptor with the given
+ * key `name`, it's often best to assert that the property has its expected
+ * descriptor, rather than asserting that it doesn't have one of many
+ * unexpected descriptors.
+ *
+ * // Recommended
+ * expect({a: 3}).to.have.ownPropertyDescriptor('a', {
+ * configurable: true,
+ * enumerable: true,
+ * writable: true,
+ * value: 3,
+ * });
+ *
+ * // Not recommended
+ * expect({a: 3}).to.not.have.ownPropertyDescriptor('a', {
+ * configurable: true,
+ * enumerable: true,
+ * writable: true,
+ * value: 1,
+ * });
+ *
+ * `.ownPropertyDescriptor` changes the target of any assertions that follow
+ * in the chain to be the value of the property descriptor from the original
+ * target object.
+ *
+ * expect({a: 1}).to.have.ownPropertyDescriptor('a')
+ * .that.has.property('enumerable', true);
+ *
+ * `.ownPropertyDescriptor` accepts an optional `msg` argument which is a
+ * custom error message to show when the assertion fails. The message can also
+ * be given as the second argument to `expect`. When not providing
+ * `descriptor`, only use the second form.
+ *
+ * // Recommended
+ * expect({a: 1}).to.have.ownPropertyDescriptor('a', {
+ * configurable: true,
+ * enumerable: true,
+ * writable: true,
+ * value: 2,
+ * }, 'nooo why fail??');
+ *
+ * // Recommended
+ * expect({a: 1}, 'nooo why fail??').to.have.ownPropertyDescriptor('a', {
+ * configurable: true,
+ * enumerable: true,
+ * writable: true,
+ * value: 2,
+ * });
+ *
+ * // Recommended
+ * expect({a: 1}, 'nooo why fail??').to.have.ownPropertyDescriptor('b');
+ *
+ * // Not recommended
+ * expect({a: 1})
+ * .to.have.ownPropertyDescriptor('b', undefined, 'nooo why fail??');
+ *
+ * The above assertion isn't the same thing as not providing `descriptor`.
+ * Instead, it's asserting that the target object has a `b` property
+ * descriptor that's deeply equal to `undefined`.
+ *
+ * The alias `.haveOwnPropertyDescriptor` can be used interchangeably with
+ * `.ownPropertyDescriptor`.
+ *
+ * @name ownPropertyDescriptor
+ * @alias haveOwnPropertyDescriptor
+ * @param {String} name
+ * @param {Object} descriptor _optional_
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function assertOwnPropertyDescriptor (name, descriptor, msg) {
+ if (typeof descriptor === 'string') {
+ msg = descriptor;
+ descriptor = null;
+ }
+ if (msg) flag(this, 'message', msg);
+ var obj = flag(this, 'object');
+ var actualDescriptor = Object.getOwnPropertyDescriptor(Object(obj), name);
+ if (actualDescriptor && descriptor) {
+ this.assert(
+ _.eql(descriptor, actualDescriptor)
+ , 'expected the own property descriptor for ' + _.inspect(name) + ' on #{this} to match ' + _.inspect(descriptor) + ', got ' + _.inspect(actualDescriptor)
+ , 'expected the own property descriptor for ' + _.inspect(name) + ' on #{this} to not match ' + _.inspect(descriptor)
+ , descriptor
+ , actualDescriptor
+ , true
+ );
+ } else {
+ this.assert(
+ actualDescriptor
+ , 'expected #{this} to have an own property descriptor for ' + _.inspect(name)
+ , 'expected #{this} to not have an own property descriptor for ' + _.inspect(name)
+ );
+ }
+ flag(this, 'object', actualDescriptor);
+ }
+
+ Assertion.addMethod('ownPropertyDescriptor', assertOwnPropertyDescriptor);
+ Assertion.addMethod('haveOwnPropertyDescriptor', assertOwnPropertyDescriptor);
+
+ /**
+ * ### .lengthOf(n[, msg])
+ *
+ * Asserts that the target's `length` or `size` is equal to the given number
+ * `n`.
+ *
+ * expect([1, 2, 3]).to.have.lengthOf(3);
+ * expect('foo').to.have.lengthOf(3);
+ * expect(new Set([1, 2, 3])).to.have.lengthOf(3);
+ * expect(new Map([['a', 1], ['b', 2], ['c', 3]])).to.have.lengthOf(3);
+ *
+ * Add `.not` earlier in the chain to negate `.lengthOf`. However, it's often
+ * best to assert that the target's `length` property is equal to its expected
+ * value, rather than not equal to one of many unexpected values.
+ *
+ * expect('foo').to.have.lengthOf(3); // Recommended
+ * expect('foo').to.not.have.lengthOf(4); // Not recommended
+ *
+ * `.lengthOf` accepts an optional `msg` argument which is a custom error
+ * message to show when the assertion fails. The message can also be given as
+ * the second argument to `expect`.
+ *
+ * expect([1, 2, 3]).to.have.lengthOf(2, 'nooo why fail??');
+ * expect([1, 2, 3], 'nooo why fail??').to.have.lengthOf(2);
+ *
+ * `.lengthOf` can also be used as a language chain, causing all `.above`,
+ * `.below`, `.least`, `.most`, and `.within` assertions that follow in the
+ * chain to use the target's `length` property as the target. However, it's
+ * often best to assert that the target's `length` property is equal to its
+ * expected length, rather than asserting that its `length` property falls
+ * within some range of values.
+ *
+ * // Recommended
+ * expect([1, 2, 3]).to.have.lengthOf(3);
+ *
+ * // Not recommended
+ * expect([1, 2, 3]).to.have.lengthOf.above(2);
+ * expect([1, 2, 3]).to.have.lengthOf.below(4);
+ * expect([1, 2, 3]).to.have.lengthOf.at.least(3);
+ * expect([1, 2, 3]).to.have.lengthOf.at.most(3);
+ * expect([1, 2, 3]).to.have.lengthOf.within(2,4);
+ *
+ * Due to a compatibility issue, the alias `.length` can't be chained directly
+ * off of an uninvoked method such as `.a`. Therefore, `.length` can't be used
+ * interchangeably with `.lengthOf` in every situation. It's recommended to
+ * always use `.lengthOf` instead of `.length`.
+ *
+ * expect([1, 2, 3]).to.have.a.length(3); // incompatible; throws error
+ * expect([1, 2, 3]).to.have.a.lengthOf(3); // passes as expected
+ *
+ * @name lengthOf
+ * @alias length
+ * @param {Number} n
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function assertLengthChain () {
+ flag(this, 'doLength', true);
+ }
+
+ function assertLength (n, msg) {
+ if (msg) flag(this, 'message', msg);
+ var obj = flag(this, 'object')
+ , objType = _.type(obj).toLowerCase()
+ , flagMsg = flag(this, 'message')
+ , ssfi = flag(this, 'ssfi')
+ , descriptor = 'length'
+ , itemsCount;
+
+ switch (objType) {
+ case 'map':
+ case 'set':
+ descriptor = 'size';
+ itemsCount = obj.size;
+ break;
+ default:
+ new Assertion(obj, flagMsg, ssfi, true).to.have.property('length');
+ itemsCount = obj.length;
+ }
+
+ this.assert(
+ itemsCount == n
+ , 'expected #{this} to have a ' + descriptor + ' of #{exp} but got #{act}'
+ , 'expected #{this} to not have a ' + descriptor + ' of #{act}'
+ , n
+ , itemsCount
+ );
+ }
+
+ Assertion.addChainableMethod('length', assertLength, assertLengthChain);
+ Assertion.addChainableMethod('lengthOf', assertLength, assertLengthChain);
+
+ /**
+ * ### .match(re[, msg])
+ *
+ * Asserts that the target matches the given regular expression `re`.
+ *
+ * expect('foobar').to.match(/^foo/);
+ *
+ * Add `.not` earlier in the chain to negate `.match`.
+ *
+ * expect('foobar').to.not.match(/taco/);
+ *
+ * `.match` accepts an optional `msg` argument which is a custom error message
+ * to show when the assertion fails. The message can also be given as the
+ * second argument to `expect`.
+ *
+ * expect('foobar').to.match(/taco/, 'nooo why fail??');
+ * expect('foobar', 'nooo why fail??').to.match(/taco/);
+ *
+ * The alias `.matches` can be used interchangeably with `.match`.
+ *
+ * @name match
+ * @alias matches
+ * @param {RegExp} re
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+ function assertMatch(re, msg) {
+ if (msg) flag(this, 'message', msg);
+ var obj = flag(this, 'object');
+ this.assert(
+ re.exec(obj)
+ , 'expected #{this} to match ' + re
+ , 'expected #{this} not to match ' + re
+ );
+ }
+
+ Assertion.addMethod('match', assertMatch);
+ Assertion.addMethod('matches', assertMatch);
+
+ /**
+ * ### .string(str[, msg])
+ *
+ * Asserts that the target string contains the given substring `str`.
+ *
+ * expect('foobar').to.have.string('bar');
+ *
+ * Add `.not` earlier in the chain to negate `.string`.
+ *
+ * expect('foobar').to.not.have.string('taco');
+ *
+ * `.string` accepts an optional `msg` argument which is a custom error
+ * message to show when the assertion fails. The message can also be given as
+ * the second argument to `expect`.
+ *
+ * expect('foobar').to.have.string('taco', 'nooo why fail??');
+ * expect('foobar', 'nooo why fail??').to.have.string('taco');
+ *
+ * @name string
+ * @param {String} str
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addMethod('string', function (str, msg) {
+ if (msg) flag(this, 'message', msg);
+ var obj = flag(this, 'object')
+ , flagMsg = flag(this, 'message')
+ , ssfi = flag(this, 'ssfi');
+ new Assertion(obj, flagMsg, ssfi, true).is.a('string');
+
+ this.assert(
+ ~obj.indexOf(str)
+ , 'expected #{this} to contain ' + _.inspect(str)
+ , 'expected #{this} to not contain ' + _.inspect(str)
+ );
+ });
+
+ /**
+ * ### .keys(key1[, key2[, ...]])
+ *
+ * Asserts that the target object, array, map, or set has the given keys. Only
+ * the target's own inherited properties are included in the search.
+ *
+ * When the target is an object or array, keys can be provided as one or more
+ * string arguments, a single array argument, or a single object argument. In
+ * the latter case, only the keys in the given object matter; the values are
+ * ignored.
+ *
+ * expect({a: 1, b: 2}).to.have.all.keys('a', 'b');
+ * expect(['x', 'y']).to.have.all.keys(0, 1);
+ *
+ * expect({a: 1, b: 2}).to.have.all.keys(['a', 'b']);
+ * expect(['x', 'y']).to.have.all.keys([0, 1]);
+ *
+ * expect({a: 1, b: 2}).to.have.all.keys({a: 4, b: 5}); // ignore 4 and 5
+ * expect(['x', 'y']).to.have.all.keys({0: 4, 1: 5}); // ignore 4 and 5
+ *
+ * When the target is a map or set, each key must be provided as a separate
+ * argument.
+ *
+ * expect(new Map([['a', 1], ['b', 2]])).to.have.all.keys('a', 'b');
+ * expect(new Set(['a', 'b'])).to.have.all.keys('a', 'b');
+ *
+ * Because `.keys` does different things based on the target's type, it's
+ * important to check the target's type before using `.keys`. See the `.a` doc
+ * for info on testing a target's type.
+ *
+ * expect({a: 1, b: 2}).to.be.an('object').that.has.all.keys('a', 'b');
+ *
+ * By default, strict (`===`) equality is used to compare keys of maps and
+ * sets. Add `.deep` earlier in the chain to use deep equality instead. See
+ * the `deep-eql` project page for info on the deep equality algorithm:
+ * https://github.com/chaijs/deep-eql.
+ *
+ * // Target set deeply (but not strictly) has key `{a: 1}`
+ * expect(new Set([{a: 1}])).to.have.all.deep.keys([{a: 1}]);
+ * expect(new Set([{a: 1}])).to.not.have.all.keys([{a: 1}]);
+ *
+ * By default, the target must have all of the given keys and no more. Add
+ * `.any` earlier in the chain to only require that the target have at least
+ * one of the given keys. Also, add `.not` earlier in the chain to negate
+ * `.keys`. It's often best to add `.any` when negating `.keys`, and to use
+ * `.all` when asserting `.keys` without negation.
+ *
+ * When negating `.keys`, `.any` is preferred because `.not.any.keys` asserts
+ * exactly what's expected of the output, whereas `.not.all.keys` creates
+ * uncertain expectations.
+ *
+ * // Recommended; asserts that target doesn't have any of the given keys
+ * expect({a: 1, b: 2}).to.not.have.any.keys('c', 'd');
+ *
+ * // Not recommended; asserts that target doesn't have all of the given
+ * // keys but may or may not have some of them
+ * expect({a: 1, b: 2}).to.not.have.all.keys('c', 'd');
+ *
+ * When asserting `.keys` without negation, `.all` is preferred because
+ * `.all.keys` asserts exactly what's expected of the output, whereas
+ * `.any.keys` creates uncertain expectations.
+ *
+ * // Recommended; asserts that target has all the given keys
+ * expect({a: 1, b: 2}).to.have.all.keys('a', 'b');
+ *
+ * // Not recommended; asserts that target has at least one of the given
+ * // keys but may or may not have more of them
+ * expect({a: 1, b: 2}).to.have.any.keys('a', 'b');
+ *
+ * Note that `.all` is used by default when neither `.all` nor `.any` appear
+ * earlier in the chain. However, it's often best to add `.all` anyway because
+ * it improves readability.
+ *
+ * // Both assertions are identical
+ * expect({a: 1, b: 2}).to.have.all.keys('a', 'b'); // Recommended
+ * expect({a: 1, b: 2}).to.have.keys('a', 'b'); // Not recommended
+ *
+ * Add `.include` earlier in the chain to require that the target's keys be a
+ * superset of the expected keys, rather than identical sets.
+ *
+ * // Target object's keys are a superset of ['a', 'b'] but not identical
+ * expect({a: 1, b: 2, c: 3}).to.include.all.keys('a', 'b');
+ * expect({a: 1, b: 2, c: 3}).to.not.have.all.keys('a', 'b');
+ *
+ * However, if `.any` and `.include` are combined, only the `.any` takes
+ * effect. The `.include` is ignored in this case.
+ *
+ * // Both assertions are identical
+ * expect({a: 1}).to.have.any.keys('a', 'b');
+ * expect({a: 1}).to.include.any.keys('a', 'b');
+ *
+ * A custom error message can be given as the second argument to `expect`.
+ *
+ * expect({a: 1}, 'nooo why fail??').to.have.key('b');
+ *
+ * The alias `.key` can be used interchangeably with `.keys`.
+ *
+ * @name keys
+ * @alias key
+ * @param {...String|Array|Object} keys
+ * @namespace BDD
+ * @api public
+ */
+
+ function assertKeys (keys) {
+ var obj = flag(this, 'object')
+ , objType = _.type(obj)
+ , keysType = _.type(keys)
+ , ssfi = flag(this, 'ssfi')
+ , isDeep = flag(this, 'deep')
+ , str
+ , deepStr = ''
+ , actual
+ , ok = true
+ , flagMsg = flag(this, 'message');
+
+ flagMsg = flagMsg ? flagMsg + ': ' : '';
+ var mixedArgsMsg = flagMsg + 'when testing keys against an object or an array you must give a single Array|Object|String argument or multiple String arguments';
+
+ if (objType === 'Map' || objType === 'Set') {
+ deepStr = isDeep ? 'deeply ' : '';
+ actual = [];
+
+ // Map and Set '.keys' aren't supported in IE 11. Therefore, use .forEach.
+ obj.forEach(function (val, key) { actual.push(key) });
+
+ if (keysType !== 'Array') {
+ keys = Array.prototype.slice.call(arguments);
+ }
+ } else {
+ actual = _.getOwnEnumerableProperties(obj);
+
+ switch (keysType) {
+ case 'Array':
+ if (arguments.length > 1) {
+ throw new AssertionError(mixedArgsMsg, undefined, ssfi);
+ }
+ break;
+ case 'Object':
+ if (arguments.length > 1) {
+ throw new AssertionError(mixedArgsMsg, undefined, ssfi);
+ }
+ keys = Object.keys(keys);
+ break;
+ default:
+ keys = Array.prototype.slice.call(arguments);
+ }
+
+ // Only stringify non-Symbols because Symbols would become "Symbol()"
+ keys = keys.map(function (val) {
+ return typeof val === 'symbol' ? val : String(val);
+ });
+ }
+
+ if (!keys.length) {
+ throw new AssertionError(flagMsg + 'keys required', undefined, ssfi);
+ }
+
+ var len = keys.length
+ , any = flag(this, 'any')
+ , all = flag(this, 'all')
+ , expected = keys;
+
+ if (!any && !all) {
+ all = true;
+ }
+
+ // Has any
+ if (any) {
+ ok = expected.some(function(expectedKey) {
+ return actual.some(function(actualKey) {
+ if (isDeep) {
+ return _.eql(expectedKey, actualKey);
+ } else {
+ return expectedKey === actualKey;
+ }
+ });
+ });
+ }
+
+ // Has all
+ if (all) {
+ ok = expected.every(function(expectedKey) {
+ return actual.some(function(actualKey) {
+ if (isDeep) {
+ return _.eql(expectedKey, actualKey);
+ } else {
+ return expectedKey === actualKey;
+ }
+ });
+ });
+
+ if (!flag(this, 'contains')) {
+ ok = ok && keys.length == actual.length;
+ }
+ }
+
+ // Key string
+ if (len > 1) {
+ keys = keys.map(function(key) {
+ return _.inspect(key);
+ });
+ var last = keys.pop();
+ if (all) {
+ str = keys.join(', ') + ', and ' + last;
+ }
+ if (any) {
+ str = keys.join(', ') + ', or ' + last;
+ }
+ } else {
+ str = _.inspect(keys[0]);
+ }
+
+ // Form
+ str = (len > 1 ? 'keys ' : 'key ') + str;
+
+ // Have / include
+ str = (flag(this, 'contains') ? 'contain ' : 'have ') + str;
+
+ // Assertion
+ this.assert(
+ ok
+ , 'expected #{this} to ' + deepStr + str
+ , 'expected #{this} to not ' + deepStr + str
+ , expected.slice(0).sort(_.compareByInspect)
+ , actual.sort(_.compareByInspect)
+ , true
+ );
+ }
+
+ Assertion.addMethod('keys', assertKeys);
+ Assertion.addMethod('key', assertKeys);
+
+ /**
+ * ### .throw([errorLike], [errMsgMatcher], [msg])
+ *
+ * When no arguments are provided, `.throw` invokes the target function and
+ * asserts that an error is thrown.
+ *
+ * var badFn = function () { throw new TypeError('Illegal salmon!'); };
+ *
+ * expect(badFn).to.throw();
+ *
+ * When one argument is provided, and it's an error constructor, `.throw`
+ * invokes the target function and asserts that an error is thrown that's an
+ * instance of that error constructor.
+ *
+ * var badFn = function () { throw new TypeError('Illegal salmon!'); };
+ *
+ * expect(badFn).to.throw(TypeError);
+ *
+ * When one argument is provided, and it's an error instance, `.throw` invokes
+ * the target function and asserts that an error is thrown that's strictly
+ * (`===`) equal to that error instance.
+ *
+ * var err = new TypeError('Illegal salmon!');
+ * var badFn = function () { throw err; };
+ *
+ * expect(badFn).to.throw(err);
+ *
+ * When one argument is provided, and it's a string, `.throw` invokes the
+ * target function and asserts that an error is thrown with a message that
+ * contains that string.
+ *
+ * var badFn = function () { throw new TypeError('Illegal salmon!'); };
+ *
+ * expect(badFn).to.throw('salmon');
+ *
+ * When one argument is provided, and it's a regular expression, `.throw`
+ * invokes the target function and asserts that an error is thrown with a
+ * message that matches that regular expression.
+ *
+ * var badFn = function () { throw new TypeError('Illegal salmon!'); };
+ *
+ * expect(badFn).to.throw(/salmon/);
+ *
+ * When two arguments are provided, and the first is an error instance or
+ * constructor, and the second is a string or regular expression, `.throw`
+ * invokes the function and asserts that an error is thrown that fulfills both
+ * conditions as described above.
+ *
+ * var err = new TypeError('Illegal salmon!');
+ * var badFn = function () { throw err; };
+ *
+ * expect(badFn).to.throw(TypeError, 'salmon');
+ * expect(badFn).to.throw(TypeError, /salmon/);
+ * expect(badFn).to.throw(err, 'salmon');
+ * expect(badFn).to.throw(err, /salmon/);
+ *
+ * Add `.not` earlier in the chain to negate `.throw`.
+ *
+ * var goodFn = function () {};
+ *
+ * expect(goodFn).to.not.throw();
+ *
+ * However, it's dangerous to negate `.throw` when providing any arguments.
+ * The problem is that it creates uncertain expectations by asserting that the
+ * target either doesn't throw an error, or that it throws an error but of a
+ * different type than the given type, or that it throws an error of the given
+ * type but with a message that doesn't include the given string. It's often
+ * best to identify the exact output that's expected, and then write an
+ * assertion that only accepts that exact output.
+ *
+ * When the target isn't expected to throw an error, it's often best to assert
+ * exactly that.
+ *
+ * var goodFn = function () {};
+ *
+ * expect(goodFn).to.not.throw(); // Recommended
+ * expect(goodFn).to.not.throw(ReferenceError, 'x'); // Not recommended
+ *
+ * When the target is expected to throw an error, it's often best to assert
+ * that the error is of its expected type, and has a message that includes an
+ * expected string, rather than asserting that it doesn't have one of many
+ * unexpected types, and doesn't have a message that includes some string.
+ *
+ * var badFn = function () { throw new TypeError('Illegal salmon!'); };
+ *
+ * expect(badFn).to.throw(TypeError, 'salmon'); // Recommended
+ * expect(badFn).to.not.throw(ReferenceError, 'x'); // Not recommended
+ *
+ * `.throw` changes the target of any assertions that follow in the chain to
+ * be the error object that's thrown.
+ *
+ * var err = new TypeError('Illegal salmon!');
+ * err.code = 42;
+ * var badFn = function () { throw err; };
+ *
+ * expect(badFn).to.throw(TypeError).with.property('code', 42);
+ *
+ * `.throw` accepts an optional `msg` argument which is a custom error message
+ * to show when the assertion fails. The message can also be given as the
+ * second argument to `expect`. When not providing two arguments, always use
+ * the second form.
+ *
+ * var goodFn = function () {};
+ *
+ * expect(goodFn).to.throw(TypeError, 'x', 'nooo why fail??');
+ * expect(goodFn, 'nooo why fail??').to.throw();
+ *
+ * Due to limitations in ES5, `.throw` may not always work as expected when
+ * using a transpiler such as Babel or TypeScript. In particular, it may
+ * produce unexpected results when subclassing the built-in `Error` object and
+ * then passing the subclassed constructor to `.throw`. See your transpiler's
+ * docs for details:
+ *
+ * - ([Babel](https://babeljs.io/docs/usage/caveats/#classes))
+ * - ([TypeScript](https://github.com/Microsoft/TypeScript/wiki/Breaking-Changes#extending-built-ins-like-error-array-and-map-may-no-longer-work))
+ *
+ * Beware of some common mistakes when using the `throw` assertion. One common
+ * mistake is to accidentally invoke the function yourself instead of letting
+ * the `throw` assertion invoke the function for you. For example, when
+ * testing if a function named `fn` throws, provide `fn` instead of `fn()` as
+ * the target for the assertion.
+ *
+ * expect(fn).to.throw(); // Good! Tests `fn` as desired
+ * expect(fn()).to.throw(); // Bad! Tests result of `fn()`, not `fn`
+ *
+ * If you need to assert that your function `fn` throws when passed certain
+ * arguments, then wrap a call to `fn` inside of another function.
+ *
+ * expect(function () { fn(42); }).to.throw(); // Function expression
+ * expect(() => fn(42)).to.throw(); // ES6 arrow function
+ *
+ * Another common mistake is to provide an object method (or any stand-alone
+ * function that relies on `this`) as the target of the assertion. Doing so is
+ * problematic because the `this` context will be lost when the function is
+ * invoked by `.throw`; there's no way for it to know what `this` is supposed
+ * to be. There are two ways around this problem. One solution is to wrap the
+ * method or function call inside of another function. Another solution is to
+ * use `bind`.
+ *
+ * expect(function () { cat.meow(); }).to.throw(); // Function expression
+ * expect(() => cat.meow()).to.throw(); // ES6 arrow function
+ * expect(cat.meow.bind(cat)).to.throw(); // Bind
+ *
+ * Finally, it's worth mentioning that it's a best practice in JavaScript to
+ * only throw `Error` and derivatives of `Error` such as `ReferenceError`,
+ * `TypeError`, and user-defined objects that extend `Error`. No other type of
+ * value will generate a stack trace when initialized. With that said, the
+ * `throw` assertion does technically support any type of value being thrown,
+ * not just `Error` and its derivatives.
+ *
+ * The aliases `.throws` and `.Throw` can be used interchangeably with
+ * `.throw`.
+ *
+ * @name throw
+ * @alias throws
+ * @alias Throw
+ * @param {Error|ErrorConstructor} errorLike
+ * @param {String|RegExp} errMsgMatcher error message
+ * @param {String} msg _optional_
+ * @see https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Error#Error_types
+ * @returns error for chaining (null if no error)
+ * @namespace BDD
+ * @api public
+ */
+
+ function assertThrows (errorLike, errMsgMatcher, msg) {
+ if (msg) flag(this, 'message', msg);
+ var obj = flag(this, 'object')
+ , ssfi = flag(this, 'ssfi')
+ , flagMsg = flag(this, 'message')
+ , negate = flag(this, 'negate') || false;
+ new Assertion(obj, flagMsg, ssfi, true).is.a('function');
+
+ if (errorLike instanceof RegExp || typeof errorLike === 'string') {
+ errMsgMatcher = errorLike;
+ errorLike = null;
+ }
+
+ var caughtErr;
+ try {
+ obj();
+ } catch (err) {
+ caughtErr = err;
+ }
+
+ // If we have the negate flag enabled and at least one valid argument it means we do expect an error
+ // but we want it to match a given set of criteria
+ var everyArgIsUndefined = errorLike === undefined && errMsgMatcher === undefined;
+
+ // If we've got the negate flag enabled and both args, we should only fail if both aren't compatible
+ // See Issue #551 and PR #683@GitHub
+ var everyArgIsDefined = Boolean(errorLike && errMsgMatcher);
+ var errorLikeFail = false;
+ var errMsgMatcherFail = false;
+
+ // Checking if error was thrown
+ if (everyArgIsUndefined || !everyArgIsUndefined && !negate) {
+ // We need this to display results correctly according to their types
+ var errorLikeString = 'an error';
+ if (errorLike instanceof Error) {
+ errorLikeString = '#{exp}';
+ } else if (errorLike) {
+ errorLikeString = _.checkError.getConstructorName(errorLike);
+ }
+
+ this.assert(
+ caughtErr
+ , 'expected #{this} to throw ' + errorLikeString
+ , 'expected #{this} to not throw an error but #{act} was thrown'
+ , errorLike && errorLike.toString()
+ , (caughtErr instanceof Error ?
+ caughtErr.toString() : (typeof caughtErr === 'string' ? caughtErr : caughtErr &&
+ _.checkError.getConstructorName(caughtErr)))
+ );
+ }
+
+ if (errorLike && caughtErr) {
+ // We should compare instances only if `errorLike` is an instance of `Error`
+ if (errorLike instanceof Error) {
+ var isCompatibleInstance = _.checkError.compatibleInstance(caughtErr, errorLike);
+
+ if (isCompatibleInstance === negate) {
+ // These checks were created to ensure we won't fail too soon when we've got both args and a negate
+ // See Issue #551 and PR #683@GitHub
+ if (everyArgIsDefined && negate) {
+ errorLikeFail = true;
+ } else {
+ this.assert(
+ negate
+ , 'expected #{this} to throw #{exp} but #{act} was thrown'
+ , 'expected #{this} to not throw #{exp}' + (caughtErr && !negate ? ' but #{act} was thrown' : '')
+ , errorLike.toString()
+ , caughtErr.toString()
+ );
+ }
+ }
+ }
+
+ var isCompatibleConstructor = _.checkError.compatibleConstructor(caughtErr, errorLike);
+ if (isCompatibleConstructor === negate) {
+ if (everyArgIsDefined && negate) {
+ errorLikeFail = true;
+ } else {
+ this.assert(
+ negate
+ , 'expected #{this} to throw #{exp} but #{act} was thrown'
+ , 'expected #{this} to not throw #{exp}' + (caughtErr ? ' but #{act} was thrown' : '')
+ , (errorLike instanceof Error ? errorLike.toString() : errorLike && _.checkError.getConstructorName(errorLike))
+ , (caughtErr instanceof Error ? caughtErr.toString() : caughtErr && _.checkError.getConstructorName(caughtErr))
+ );
+ }
+ }
+ }
+
+ if (caughtErr && errMsgMatcher !== undefined && errMsgMatcher !== null) {
+ // Here we check compatible messages
+ var placeholder = 'including';
+ if (errMsgMatcher instanceof RegExp) {
+ placeholder = 'matching'
+ }
+
+ var isCompatibleMessage = _.checkError.compatibleMessage(caughtErr, errMsgMatcher);
+ if (isCompatibleMessage === negate) {
+ if (everyArgIsDefined && negate) {
+ errMsgMatcherFail = true;
+ } else {
+ this.assert(
+ negate
+ , 'expected #{this} to throw error ' + placeholder + ' #{exp} but got #{act}'
+ , 'expected #{this} to throw error not ' + placeholder + ' #{exp}'
+ , errMsgMatcher
+ , _.checkError.getMessage(caughtErr)
+ );
+ }
+ }
+ }
+
+ // If both assertions failed and both should've matched we throw an error
+ if (errorLikeFail && errMsgMatcherFail) {
+ this.assert(
+ negate
+ , 'expected #{this} to throw #{exp} but #{act} was thrown'
+ , 'expected #{this} to not throw #{exp}' + (caughtErr ? ' but #{act} was thrown' : '')
+ , (errorLike instanceof Error ? errorLike.toString() : errorLike && _.checkError.getConstructorName(errorLike))
+ , (caughtErr instanceof Error ? caughtErr.toString() : caughtErr && _.checkError.getConstructorName(caughtErr))
+ );
+ }
+
+ flag(this, 'object', caughtErr);
+ };
+
+ Assertion.addMethod('throw', assertThrows);
+ Assertion.addMethod('throws', assertThrows);
+ Assertion.addMethod('Throw', assertThrows);
+
+ /**
+ * ### .respondTo(method[, msg])
+ *
+ * When the target is a non-function object, `.respondTo` asserts that the
+ * target has a method with the given name `method`. The method can be own or
+ * inherited, and it can be enumerable or non-enumerable.
+ *
+ * function Cat () {}
+ * Cat.prototype.meow = function () {};
+ *
+ * expect(new Cat()).to.respondTo('meow');
+ *
+ * When the target is a function, `.respondTo` asserts that the target's
+ * `prototype` property has a method with the given name `method`. Again, the
+ * method can be own or inherited, and it can be enumerable or non-enumerable.
+ *
+ * function Cat () {}
+ * Cat.prototype.meow = function () {};
+ *
+ * expect(Cat).to.respondTo('meow');
+ *
+ * Add `.itself` earlier in the chain to force `.respondTo` to treat the
+ * target as a non-function object, even if it's a function. Thus, it asserts
+ * that the target has a method with the given name `method`, rather than
+ * asserting that the target's `prototype` property has a method with the
+ * given name `method`.
+ *
+ * function Cat () {}
+ * Cat.prototype.meow = function () {};
+ * Cat.hiss = function () {};
+ *
+ * expect(Cat).itself.to.respondTo('hiss').but.not.respondTo('meow');
+ *
+ * When not adding `.itself`, it's important to check the target's type before
+ * using `.respondTo`. See the `.a` doc for info on checking a target's type.
+ *
+ * function Cat () {}
+ * Cat.prototype.meow = function () {};
+ *
+ * expect(new Cat()).to.be.an('object').that.respondsTo('meow');
+ *
+ * Add `.not` earlier in the chain to negate `.respondTo`.
+ *
+ * function Dog () {}
+ * Dog.prototype.bark = function () {};
+ *
+ * expect(new Dog()).to.not.respondTo('meow');
+ *
+ * `.respondTo` accepts an optional `msg` argument which is a custom error
+ * message to show when the assertion fails. The message can also be given as
+ * the second argument to `expect`.
+ *
+ * expect({}).to.respondTo('meow', 'nooo why fail??');
+ * expect({}, 'nooo why fail??').to.respondTo('meow');
+ *
+ * The alias `.respondsTo` can be used interchangeably with `.respondTo`.
+ *
+ * @name respondTo
+ * @alias respondsTo
+ * @param {String} method
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function respondTo (method, msg) {
+ if (msg) flag(this, 'message', msg);
+ var obj = flag(this, 'object')
+ , itself = flag(this, 'itself')
+ , context = ('function' === typeof obj && !itself)
+ ? obj.prototype[method]
+ : obj[method];
+
+ this.assert(
+ 'function' === typeof context
+ , 'expected #{this} to respond to ' + _.inspect(method)
+ , 'expected #{this} to not respond to ' + _.inspect(method)
+ );
+ }
+
+ Assertion.addMethod('respondTo', respondTo);
+ Assertion.addMethod('respondsTo', respondTo);
+
+ /**
+ * ### .itself
+ *
+ * Forces all `.respondTo` assertions that follow in the chain to behave as if
+ * the target is a non-function object, even if it's a function. Thus, it
+ * causes `.respondTo` to assert that the target has a method with the given
+ * name, rather than asserting that the target's `prototype` property has a
+ * method with the given name.
+ *
+ * function Cat () {}
+ * Cat.prototype.meow = function () {};
+ * Cat.hiss = function () {};
+ *
+ * expect(Cat).itself.to.respondTo('hiss').but.not.respondTo('meow');
+ *
+ * @name itself
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('itself', function () {
+ flag(this, 'itself', true);
+ });
+
+ /**
+ * ### .satisfy(matcher[, msg])
+ *
+ * Invokes the given `matcher` function with the target being passed as the
+ * first argument, and asserts that the value returned is truthy.
+ *
+ * expect(1).to.satisfy(function(num) {
+ * return num > 0;
+ * });
+ *
+ * Add `.not` earlier in the chain to negate `.satisfy`.
+ *
+ * expect(1).to.not.satisfy(function(num) {
+ * return num > 2;
+ * });
+ *
+ * `.satisfy` accepts an optional `msg` argument which is a custom error
+ * message to show when the assertion fails. The message can also be given as
+ * the second argument to `expect`.
+ *
+ * expect(1).to.satisfy(function(num) {
+ * return num > 2;
+ * }, 'nooo why fail??');
+ *
+ * expect(1, 'nooo why fail??').to.satisfy(function(num) {
+ * return num > 2;
+ * });
+ *
+ * The alias `.satisfies` can be used interchangeably with `.satisfy`.
+ *
+ * @name satisfy
+ * @alias satisfies
+ * @param {Function} matcher
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function satisfy (matcher, msg) {
+ if (msg) flag(this, 'message', msg);
+ var obj = flag(this, 'object');
+ var result = matcher(obj);
+ this.assert(
+ result
+ , 'expected #{this} to satisfy ' + _.objDisplay(matcher)
+ , 'expected #{this} to not satisfy' + _.objDisplay(matcher)
+ , flag(this, 'negate') ? false : true
+ , result
+ );
+ }
+
+ Assertion.addMethod('satisfy', satisfy);
+ Assertion.addMethod('satisfies', satisfy);
+
+ /**
+ * ### .closeTo(expected, delta[, msg])
+ *
+ * Asserts that the target is a number that's within a given +/- `delta` range
+ * of the given number `expected`. However, it's often best to assert that the
+ * target is equal to its expected value.
+ *
+ * // Recommended
+ * expect(1.5).to.equal(1.5);
+ *
+ * // Not recommended
+ * expect(1.5).to.be.closeTo(1, 0.5);
+ * expect(1.5).to.be.closeTo(2, 0.5);
+ * expect(1.5).to.be.closeTo(1, 1);
+ *
+ * Add `.not` earlier in the chain to negate `.closeTo`.
+ *
+ * expect(1.5).to.equal(1.5); // Recommended
+ * expect(1.5).to.not.be.closeTo(3, 1); // Not recommended
+ *
+ * `.closeTo` accepts an optional `msg` argument which is a custom error
+ * message to show when the assertion fails. The message can also be given as
+ * the second argument to `expect`.
+ *
+ * expect(1.5).to.be.closeTo(3, 1, 'nooo why fail??');
+ * expect(1.5, 'nooo why fail??').to.be.closeTo(3, 1);
+ *
+ * The alias `.approximately` can be used interchangeably with `.closeTo`.
+ *
+ * @name closeTo
+ * @alias approximately
+ * @param {Number} expected
+ * @param {Number} delta
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function closeTo(expected, delta, msg) {
+ if (msg) flag(this, 'message', msg);
+ var obj = flag(this, 'object')
+ , flagMsg = flag(this, 'message')
+ , ssfi = flag(this, 'ssfi');
+
+ new Assertion(obj, flagMsg, ssfi, true).is.a('number');
+ if (typeof expected !== 'number' || typeof delta !== 'number') {
+ flagMsg = flagMsg ? flagMsg + ': ' : '';
+ throw new AssertionError(
+ flagMsg + 'the arguments to closeTo or approximately must be numbers',
+ undefined,
+ ssfi
+ );
+ }
+
+ this.assert(
+ Math.abs(obj - expected) <= delta
+ , 'expected #{this} to be close to ' + expected + ' +/- ' + delta
+ , 'expected #{this} not to be close to ' + expected + ' +/- ' + delta
+ );
+ }
+
+ Assertion.addMethod('closeTo', closeTo);
+ Assertion.addMethod('approximately', closeTo);
+
+ // Note: Duplicates are ignored if testing for inclusion instead of sameness.
+ function isSubsetOf(subset, superset, cmp, contains, ordered) {
+ if (!contains) {
+ if (subset.length !== superset.length) return false;
+ superset = superset.slice();
+ }
+
+ return subset.every(function(elem, idx) {
+ if (ordered) return cmp ? cmp(elem, superset[idx]) : elem === superset[idx];
+
+ if (!cmp) {
+ var matchIdx = superset.indexOf(elem);
+ if (matchIdx === -1) return false;
+
+ // Remove match from superset so not counted twice if duplicate in subset.
+ if (!contains) superset.splice(matchIdx, 1);
+ return true;
+ }
+
+ return superset.some(function(elem2, matchIdx) {
+ if (!cmp(elem, elem2)) return false;
+
+ // Remove match from superset so not counted twice if duplicate in subset.
+ if (!contains) superset.splice(matchIdx, 1);
+ return true;
+ });
+ });
+ }
+
+ /**
+ * ### .members(set[, msg])
+ *
+ * Asserts that the target array has the same members as the given array
+ * `set`.
+ *
+ * expect([1, 2, 3]).to.have.members([2, 1, 3]);
+ * expect([1, 2, 2]).to.have.members([2, 1, 2]);
+ *
+ * By default, members are compared using strict (`===`) equality. Add `.deep`
+ * earlier in the chain to use deep equality instead. See the `deep-eql`
+ * project page for info on the deep equality algorithm:
+ * https://github.com/chaijs/deep-eql.
+ *
+ * // Target array deeply (but not strictly) has member `{a: 1}`
+ * expect([{a: 1}]).to.have.deep.members([{a: 1}]);
+ * expect([{a: 1}]).to.not.have.members([{a: 1}]);
+ *
+ * By default, order doesn't matter. Add `.ordered` earlier in the chain to
+ * require that members appear in the same order.
+ *
+ * expect([1, 2, 3]).to.have.ordered.members([1, 2, 3]);
+ * expect([1, 2, 3]).to.have.members([2, 1, 3])
+ * .but.not.ordered.members([2, 1, 3]);
+ *
+ * By default, both arrays must be the same size. Add `.include` earlier in
+ * the chain to require that the target's members be a superset of the
+ * expected members. Note that duplicates are ignored in the subset when
+ * `.include` is added.
+ *
+ * // Target array is a superset of [1, 2] but not identical
+ * expect([1, 2, 3]).to.include.members([1, 2]);
+ * expect([1, 2, 3]).to.not.have.members([1, 2]);
+ *
+ * // Duplicates in the subset are ignored
+ * expect([1, 2, 3]).to.include.members([1, 2, 2, 2]);
+ *
+ * `.deep`, `.ordered`, and `.include` can all be combined. However, if
+ * `.include` and `.ordered` are combined, the ordering begins at the start of
+ * both arrays.
+ *
+ * expect([{a: 1}, {b: 2}, {c: 3}])
+ * .to.include.deep.ordered.members([{a: 1}, {b: 2}])
+ * .but.not.include.deep.ordered.members([{b: 2}, {c: 3}]);
+ *
+ * Add `.not` earlier in the chain to negate `.members`. However, it's
+ * dangerous to do so. The problem is that it creates uncertain expectations
+ * by asserting that the target array doesn't have all of the same members as
+ * the given array `set` but may or may not have some of them. It's often best
+ * to identify the exact output that's expected, and then write an assertion
+ * that only accepts that exact output.
+ *
+ * expect([1, 2]).to.not.include(3).and.not.include(4); // Recommended
+ * expect([1, 2]).to.not.have.members([3, 4]); // Not recommended
+ *
+ * `.members` accepts an optional `msg` argument which is a custom error
+ * message to show when the assertion fails. The message can also be given as
+ * the second argument to `expect`.
+ *
+ * expect([1, 2]).to.have.members([1, 2, 3], 'nooo why fail??');
+ * expect([1, 2], 'nooo why fail??').to.have.members([1, 2, 3]);
+ *
+ * @name members
+ * @param {Array} set
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addMethod('members', function (subset, msg) {
+ if (msg) flag(this, 'message', msg);
+ var obj = flag(this, 'object')
+ , flagMsg = flag(this, 'message')
+ , ssfi = flag(this, 'ssfi');
+
+ new Assertion(obj, flagMsg, ssfi, true).to.be.an('array');
+ new Assertion(subset, flagMsg, ssfi, true).to.be.an('array');
+
+ var contains = flag(this, 'contains');
+ var ordered = flag(this, 'ordered');
+
+ var subject, failMsg, failNegateMsg;
+
+ if (contains) {
+ subject = ordered ? 'an ordered superset' : 'a superset';
+ failMsg = 'expected #{this} to be ' + subject + ' of #{exp}';
+ failNegateMsg = 'expected #{this} to not be ' + subject + ' of #{exp}';
+ } else {
+ subject = ordered ? 'ordered members' : 'members';
+ failMsg = 'expected #{this} to have the same ' + subject + ' as #{exp}';
+ failNegateMsg = 'expected #{this} to not have the same ' + subject + ' as #{exp}';
+ }
+
+ var cmp = flag(this, 'deep') ? _.eql : undefined;
+
+ this.assert(
+ isSubsetOf(subset, obj, cmp, contains, ordered)
+ , failMsg
+ , failNegateMsg
+ , subset
+ , obj
+ , true
+ );
+ });
+
+ /**
+ * ### .oneOf(list[, msg])
+ *
+ * Asserts that the target is a member of the given array `list`. However,
+ * it's often best to assert that the target is equal to its expected value.
+ *
+ * expect(1).to.equal(1); // Recommended
+ * expect(1).to.be.oneOf([1, 2, 3]); // Not recommended
+ *
+ * Comparisons are performed using strict (`===`) equality.
+ *
+ * Add `.not` earlier in the chain to negate `.oneOf`.
+ *
+ * expect(1).to.equal(1); // Recommended
+ * expect(1).to.not.be.oneOf([2, 3, 4]); // Not recommended
+ *
+ * `.oneOf` accepts an optional `msg` argument which is a custom error message
+ * to show when the assertion fails. The message can also be given as the
+ * second argument to `expect`.
+ *
+ * expect(1).to.be.oneOf([2, 3, 4], 'nooo why fail??');
+ * expect(1, 'nooo why fail??').to.be.oneOf([2, 3, 4]);
+ *
+ * @name oneOf
+ * @param {Array<*>} list
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function oneOf (list, msg) {
+ if (msg) flag(this, 'message', msg);
+ var expected = flag(this, 'object')
+ , flagMsg = flag(this, 'message')
+ , ssfi = flag(this, 'ssfi');
+ new Assertion(list, flagMsg, ssfi, true).to.be.an('array');
+
+ this.assert(
+ list.indexOf(expected) > -1
+ , 'expected #{this} to be one of #{exp}'
+ , 'expected #{this} to not be one of #{exp}'
+ , list
+ , expected
+ );
+ }
+
+ Assertion.addMethod('oneOf', oneOf);
+
+ /**
+ * ### .change(subject[, prop[, msg]])
+ *
+ * When one argument is provided, `.change` asserts that the given function
+ * `subject` returns a different value when it's invoked before the target
+ * function compared to when it's invoked afterward. However, it's often best
+ * to assert that `subject` is equal to its expected value.
+ *
+ * var dots = ''
+ * , addDot = function () { dots += '.'; }
+ * , getDots = function () { return dots; };
+ *
+ * // Recommended
+ * expect(getDots()).to.equal('');
+ * addDot();
+ * expect(getDots()).to.equal('.');
+ *
+ * // Not recommended
+ * expect(addDot).to.change(getDots);
+ *
+ * When two arguments are provided, `.change` asserts that the value of the
+ * given object `subject`'s `prop` property is different before invoking the
+ * target function compared to afterward.
+ *
+ * var myObj = {dots: ''}
+ * , addDot = function () { myObj.dots += '.'; };
+ *
+ * // Recommended
+ * expect(myObj).to.have.property('dots', '');
+ * addDot();
+ * expect(myObj).to.have.property('dots', '.');
+ *
+ * // Not recommended
+ * expect(addDot).to.change(myObj, 'dots');
+ *
+ * Strict (`===`) equality is used to compare before and after values.
+ *
+ * Add `.not` earlier in the chain to negate `.change`.
+ *
+ * var dots = ''
+ * , noop = function () {}
+ * , getDots = function () { return dots; };
+ *
+ * expect(noop).to.not.change(getDots);
+ *
+ * var myObj = {dots: ''}
+ * , noop = function () {};
+ *
+ * expect(noop).to.not.change(myObj, 'dots');
+ *
+ * `.change` accepts an optional `msg` argument which is a custom error
+ * message to show when the assertion fails. The message can also be given as
+ * the second argument to `expect`. When not providing two arguments, always
+ * use the second form.
+ *
+ * var myObj = {dots: ''}
+ * , addDot = function () { myObj.dots += '.'; };
+ *
+ * expect(addDot).to.not.change(myObj, 'dots', 'nooo why fail??');
+ *
+ * var dots = ''
+ * , addDot = function () { dots += '.'; }
+ * , getDots = function () { return dots; };
+ *
+ * expect(addDot, 'nooo why fail??').to.not.change(getDots);
+ *
+ * `.change` also causes all `.by` assertions that follow in the chain to
+ * assert how much a numeric subject was increased or decreased by. However,
+ * it's dangerous to use `.change.by`. The problem is that it creates
+ * uncertain expectations by asserting that the subject either increases by
+ * the given delta, or that it decreases by the given delta. It's often best
+ * to identify the exact output that's expected, and then write an assertion
+ * that only accepts that exact output.
+ *
+ * var myObj = {val: 1}
+ * , addTwo = function () { myObj.val += 2; }
+ * , subtractTwo = function () { myObj.val -= 2; };
+ *
+ * expect(addTwo).to.increase(myObj, 'val').by(2); // Recommended
+ * expect(addTwo).to.change(myObj, 'val').by(2); // Not recommended
+ *
+ * expect(subtractTwo).to.decrease(myObj, 'val').by(2); // Recommended
+ * expect(subtractTwo).to.change(myObj, 'val').by(2); // Not recommended
+ *
+ * The alias `.changes` can be used interchangeably with `.change`.
+ *
+ * @name change
+ * @alias changes
+ * @param {String} subject
+ * @param {String} prop name _optional_
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function assertChanges (subject, prop, msg) {
+ if (msg) flag(this, 'message', msg);
+ var fn = flag(this, 'object')
+ , flagMsg = flag(this, 'message')
+ , ssfi = flag(this, 'ssfi');
+ new Assertion(fn, flagMsg, ssfi, true).is.a('function');
+
+ var initial;
+ if (!prop) {
+ new Assertion(subject, flagMsg, ssfi, true).is.a('function');
+ initial = subject();
+ } else {
+ new Assertion(subject, flagMsg, ssfi, true).to.have.property(prop);
+ initial = subject[prop];
+ }
+
+ fn();
+
+ var final = prop === undefined || prop === null ? subject() : subject[prop];
+ var msgObj = prop === undefined || prop === null ? initial : '.' + prop;
+
+ // This gets flagged because of the .by(delta) assertion
+ flag(this, 'deltaMsgObj', msgObj);
+ flag(this, 'initialDeltaValue', initial);
+ flag(this, 'finalDeltaValue', final);
+ flag(this, 'deltaBehavior', 'change');
+ flag(this, 'realDelta', final !== initial);
+
+ this.assert(
+ initial !== final
+ , 'expected ' + msgObj + ' to change'
+ , 'expected ' + msgObj + ' to not change'
+ );
+ }
+
+ Assertion.addMethod('change', assertChanges);
+ Assertion.addMethod('changes', assertChanges);
+
+ /**
+ * ### .increase(subject[, prop[, msg]])
+ *
+ * When one argument is provided, `.increase` asserts that the given function
+ * `subject` returns a greater number when it's invoked after invoking the
+ * target function compared to when it's invoked beforehand. `.increase` also
+ * causes all `.by` assertions that follow in the chain to assert how much
+ * greater of a number is returned. It's often best to assert that the return
+ * value increased by the expected amount, rather than asserting it increased
+ * by any amount.
+ *
+ * var val = 1
+ * , addTwo = function () { val += 2; }
+ * , getVal = function () { return val; };
+ *
+ * expect(addTwo).to.increase(getVal).by(2); // Recommended
+ * expect(addTwo).to.increase(getVal); // Not recommended
+ *
+ * When two arguments are provided, `.increase` asserts that the value of the
+ * given object `subject`'s `prop` property is greater after invoking the
+ * target function compared to beforehand.
+ *
+ * var myObj = {val: 1}
+ * , addTwo = function () { myObj.val += 2; };
+ *
+ * expect(addTwo).to.increase(myObj, 'val').by(2); // Recommended
+ * expect(addTwo).to.increase(myObj, 'val'); // Not recommended
+ *
+ * Add `.not` earlier in the chain to negate `.increase`. However, it's
+ * dangerous to do so. The problem is that it creates uncertain expectations
+ * by asserting that the subject either decreases, or that it stays the same.
+ * It's often best to identify the exact output that's expected, and then
+ * write an assertion that only accepts that exact output.
+ *
+ * When the subject is expected to decrease, it's often best to assert that it
+ * decreased by the expected amount.
+ *
+ * var myObj = {val: 1}
+ * , subtractTwo = function () { myObj.val -= 2; };
+ *
+ * expect(subtractTwo).to.decrease(myObj, 'val').by(2); // Recommended
+ * expect(subtractTwo).to.not.increase(myObj, 'val'); // Not recommended
+ *
+ * When the subject is expected to stay the same, it's often best to assert
+ * exactly that.
+ *
+ * var myObj = {val: 1}
+ * , noop = function () {};
+ *
+ * expect(noop).to.not.change(myObj, 'val'); // Recommended
+ * expect(noop).to.not.increase(myObj, 'val'); // Not recommended
+ *
+ * `.increase` accepts an optional `msg` argument which is a custom error
+ * message to show when the assertion fails. The message can also be given as
+ * the second argument to `expect`. When not providing two arguments, always
+ * use the second form.
+ *
+ * var myObj = {val: 1}
+ * , noop = function () {};
+ *
+ * expect(noop).to.increase(myObj, 'val', 'nooo why fail??');
+ *
+ * var val = 1
+ * , noop = function () {}
+ * , getVal = function () { return val; };
+ *
+ * expect(noop, 'nooo why fail??').to.increase(getVal);
+ *
+ * The alias `.increases` can be used interchangeably with `.increase`.
+ *
+ * @name increase
+ * @alias increases
+ * @param {String|Function} subject
+ * @param {String} prop name _optional_
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function assertIncreases (subject, prop, msg) {
+ if (msg) flag(this, 'message', msg);
+ var fn = flag(this, 'object')
+ , flagMsg = flag(this, 'message')
+ , ssfi = flag(this, 'ssfi');
+ new Assertion(fn, flagMsg, ssfi, true).is.a('function');
+
+ var initial;
+ if (!prop) {
+ new Assertion(subject, flagMsg, ssfi, true).is.a('function');
+ initial = subject();
+ } else {
+ new Assertion(subject, flagMsg, ssfi, true).to.have.property(prop);
+ initial = subject[prop];
+ }
+
+ // Make sure that the target is a number
+ new Assertion(initial, flagMsg, ssfi, true).is.a('number');
+
+ fn();
+
+ var final = prop === undefined || prop === null ? subject() : subject[prop];
+ var msgObj = prop === undefined || prop === null ? initial : '.' + prop;
+
+ flag(this, 'deltaMsgObj', msgObj);
+ flag(this, 'initialDeltaValue', initial);
+ flag(this, 'finalDeltaValue', final);
+ flag(this, 'deltaBehavior', 'increase');
+ flag(this, 'realDelta', final - initial);
+
+ this.assert(
+ final - initial > 0
+ , 'expected ' + msgObj + ' to increase'
+ , 'expected ' + msgObj + ' to not increase'
+ );
+ }
+
+ Assertion.addMethod('increase', assertIncreases);
+ Assertion.addMethod('increases', assertIncreases);
+
+ /**
+ * ### .decrease(subject[, prop[, msg]])
+ *
+ * When one argument is provided, `.decrease` asserts that the given function
+ * `subject` returns a lesser number when it's invoked after invoking the
+ * target function compared to when it's invoked beforehand. `.decrease` also
+ * causes all `.by` assertions that follow in the chain to assert how much
+ * lesser of a number is returned. It's often best to assert that the return
+ * value decreased by the expected amount, rather than asserting it decreased
+ * by any amount.
+ *
+ * var val = 1
+ * , subtractTwo = function () { val -= 2; }
+ * , getVal = function () { return val; };
+ *
+ * expect(subtractTwo).to.decrease(getVal).by(2); // Recommended
+ * expect(subtractTwo).to.decrease(getVal); // Not recommended
+ *
+ * When two arguments are provided, `.decrease` asserts that the value of the
+ * given object `subject`'s `prop` property is lesser after invoking the
+ * target function compared to beforehand.
+ *
+ * var myObj = {val: 1}
+ * , subtractTwo = function () { myObj.val -= 2; };
+ *
+ * expect(subtractTwo).to.decrease(myObj, 'val').by(2); // Recommended
+ * expect(subtractTwo).to.decrease(myObj, 'val'); // Not recommended
+ *
+ * Add `.not` earlier in the chain to negate `.decrease`. However, it's
+ * dangerous to do so. The problem is that it creates uncertain expectations
+ * by asserting that the subject either increases, or that it stays the same.
+ * It's often best to identify the exact output that's expected, and then
+ * write an assertion that only accepts that exact output.
+ *
+ * When the subject is expected to increase, it's often best to assert that it
+ * increased by the expected amount.
+ *
+ * var myObj = {val: 1}
+ * , addTwo = function () { myObj.val += 2; };
+ *
+ * expect(addTwo).to.increase(myObj, 'val').by(2); // Recommended
+ * expect(addTwo).to.not.decrease(myObj, 'val'); // Not recommended
+ *
+ * When the subject is expected to stay the same, it's often best to assert
+ * exactly that.
+ *
+ * var myObj = {val: 1}
+ * , noop = function () {};
+ *
+ * expect(noop).to.not.change(myObj, 'val'); // Recommended
+ * expect(noop).to.not.decrease(myObj, 'val'); // Not recommended
+ *
+ * `.decrease` accepts an optional `msg` argument which is a custom error
+ * message to show when the assertion fails. The message can also be given as
+ * the second argument to `expect`. When not providing two arguments, always
+ * use the second form.
+ *
+ * var myObj = {val: 1}
+ * , noop = function () {};
+ *
+ * expect(noop).to.decrease(myObj, 'val', 'nooo why fail??');
+ *
+ * var val = 1
+ * , noop = function () {}
+ * , getVal = function () { return val; };
+ *
+ * expect(noop, 'nooo why fail??').to.decrease(getVal);
+ *
+ * The alias `.decreases` can be used interchangeably with `.decrease`.
+ *
+ * @name decrease
+ * @alias decreases
+ * @param {String|Function} subject
+ * @param {String} prop name _optional_
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function assertDecreases (subject, prop, msg) {
+ if (msg) flag(this, 'message', msg);
+ var fn = flag(this, 'object')
+ , flagMsg = flag(this, 'message')
+ , ssfi = flag(this, 'ssfi');
+ new Assertion(fn, flagMsg, ssfi, true).is.a('function');
+
+ var initial;
+ if (!prop) {
+ new Assertion(subject, flagMsg, ssfi, true).is.a('function');
+ initial = subject();
+ } else {
+ new Assertion(subject, flagMsg, ssfi, true).to.have.property(prop);
+ initial = subject[prop];
+ }
+
+ // Make sure that the target is a number
+ new Assertion(initial, flagMsg, ssfi, true).is.a('number');
+
+ fn();
+
+ var final = prop === undefined || prop === null ? subject() : subject[prop];
+ var msgObj = prop === undefined || prop === null ? initial : '.' + prop;
+
+ flag(this, 'deltaMsgObj', msgObj);
+ flag(this, 'initialDeltaValue', initial);
+ flag(this, 'finalDeltaValue', final);
+ flag(this, 'deltaBehavior', 'decrease');
+ flag(this, 'realDelta', initial - final);
+
+ this.assert(
+ final - initial < 0
+ , 'expected ' + msgObj + ' to decrease'
+ , 'expected ' + msgObj + ' to not decrease'
+ );
+ }
+
+ Assertion.addMethod('decrease', assertDecreases);
+ Assertion.addMethod('decreases', assertDecreases);
+
+ /**
+ * ### .by(delta[, msg])
+ *
+ * When following an `.increase` assertion in the chain, `.by` asserts that
+ * the subject of the `.increase` assertion increased by the given `delta`.
+ *
+ * var myObj = {val: 1}
+ * , addTwo = function () { myObj.val += 2; };
+ *
+ * expect(addTwo).to.increase(myObj, 'val').by(2);
+ *
+ * When following a `.decrease` assertion in the chain, `.by` asserts that the
+ * subject of the `.decrease` assertion decreased by the given `delta`.
+ *
+ * var myObj = {val: 1}
+ * , subtractTwo = function () { myObj.val -= 2; };
+ *
+ * expect(subtractTwo).to.decrease(myObj, 'val').by(2);
+ *
+ * When following a `.change` assertion in the chain, `.by` asserts that the
+ * subject of the `.change` assertion either increased or decreased by the
+ * given `delta`. However, it's dangerous to use `.change.by`. The problem is
+ * that it creates uncertain expectations. It's often best to identify the
+ * exact output that's expected, and then write an assertion that only accepts
+ * that exact output.
+ *
+ * var myObj = {val: 1}
+ * , addTwo = function () { myObj.val += 2; }
+ * , subtractTwo = function () { myObj.val -= 2; };
+ *
+ * expect(addTwo).to.increase(myObj, 'val').by(2); // Recommended
+ * expect(addTwo).to.change(myObj, 'val').by(2); // Not recommended
+ *
+ * expect(subtractTwo).to.decrease(myObj, 'val').by(2); // Recommended
+ * expect(subtractTwo).to.change(myObj, 'val').by(2); // Not recommended
+ *
+ * Add `.not` earlier in the chain to negate `.by`. However, it's often best
+ * to assert that the subject changed by its expected delta, rather than
+ * asserting that it didn't change by one of countless unexpected deltas.
+ *
+ * var myObj = {val: 1}
+ * , addTwo = function () { myObj.val += 2; };
+ *
+ * // Recommended
+ * expect(addTwo).to.increase(myObj, 'val').by(2);
+ *
+ * // Not recommended
+ * expect(addTwo).to.increase(myObj, 'val').but.not.by(3);
+ *
+ * `.by` accepts an optional `msg` argument which is a custom error message to
+ * show when the assertion fails. The message can also be given as the second
+ * argument to `expect`.
+ *
+ * var myObj = {val: 1}
+ * , addTwo = function () { myObj.val += 2; };
+ *
+ * expect(addTwo).to.increase(myObj, 'val').by(3, 'nooo why fail??');
+ * expect(addTwo, 'nooo why fail??').to.increase(myObj, 'val').by(3);
+ *
+ * @name by
+ * @param {Number} delta
+ * @param {String} msg _optional_
+ * @namespace BDD
+ * @api public
+ */
+
+ function assertDelta(delta, msg) {
+ if (msg) flag(this, 'message', msg);
+
+ var msgObj = flag(this, 'deltaMsgObj');
+ var initial = flag(this, 'initialDeltaValue');
+ var final = flag(this, 'finalDeltaValue');
+ var behavior = flag(this, 'deltaBehavior');
+ var realDelta = flag(this, 'realDelta');
+
+ var expression;
+ if (behavior === 'change') {
+ expression = Math.abs(final - initial) === Math.abs(delta);
+ } else {
+ expression = realDelta === Math.abs(delta);
+ }
+
+ this.assert(
+ expression
+ , 'expected ' + msgObj + ' to ' + behavior + ' by ' + delta
+ , 'expected ' + msgObj + ' to not ' + behavior + ' by ' + delta
+ );
+ }
+
+ Assertion.addMethod('by', assertDelta);
+
+ /**
+ * ### .extensible
+ *
+ * Asserts that the target is extensible, which means that new properties can
+ * be added to it. Primitives are never extensible.
+ *
+ * expect({a: 1}).to.be.extensible;
+ *
+ * Add `.not` earlier in the chain to negate `.extensible`.
+ *
+ * var nonExtensibleObject = Object.preventExtensions({})
+ * , sealedObject = Object.seal({})
+ * , frozenObject = Object.freeze({});
+ *
+ * expect(nonExtensibleObject).to.not.be.extensible;
+ * expect(sealedObject).to.not.be.extensible;
+ * expect(frozenObject).to.not.be.extensible;
+ * expect(1).to.not.be.extensible;
+ *
+ * A custom error message can be given as the second argument to `expect`.
+ *
+ * expect(1, 'nooo why fail??').to.be.extensible;
+ *
+ * @name extensible
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('extensible', function() {
+ var obj = flag(this, 'object');
+
+ // In ES5, if the argument to this method is a primitive, then it will cause a TypeError.
+ // In ES6, a non-object argument will be treated as if it was a non-extensible ordinary object, simply return false.
+ // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isExtensible
+ // The following provides ES6 behavior for ES5 environments.
+
+ var isExtensible = obj === Object(obj) && Object.isExtensible(obj);
+
+ this.assert(
+ isExtensible
+ , 'expected #{this} to be extensible'
+ , 'expected #{this} to not be extensible'
+ );
+ });
+
+ /**
+ * ### .sealed
+ *
+ * Asserts that the target is sealed, which means that new properties can't be
+ * added to it, and its existing properties can't be reconfigured or deleted.
+ * However, it's possible that its existing properties can still be reassigned
+ * to different values. Primitives are always sealed.
+ *
+ * var sealedObject = Object.seal({});
+ * var frozenObject = Object.freeze({});
+ *
+ * expect(sealedObject).to.be.sealed;
+ * expect(frozenObject).to.be.sealed;
+ * expect(1).to.be.sealed;
+ *
+ * Add `.not` earlier in the chain to negate `.sealed`.
+ *
+ * expect({a: 1}).to.not.be.sealed;
+ *
+ * A custom error message can be given as the second argument to `expect`.
+ *
+ * expect({a: 1}, 'nooo why fail??').to.be.sealed;
+ *
+ * @name sealed
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('sealed', function() {
+ var obj = flag(this, 'object');
+
+ // In ES5, if the argument to this method is a primitive, then it will cause a TypeError.
+ // In ES6, a non-object argument will be treated as if it was a sealed ordinary object, simply return true.
+ // See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isSealed
+ // The following provides ES6 behavior for ES5 environments.
+
+ var isSealed = obj === Object(obj) ? Object.isSealed(obj) : true;
+
+ this.assert(
+ isSealed
+ , 'expected #{this} to be sealed'
+ , 'expected #{this} to not be sealed'
+ );
+ });
+
+ /**
+ * ### .frozen
+ *
+ * Asserts that the target is frozen, which means that new properties can't be
+ * added to it, and its existing properties can't be reassigned to different
+ * values, reconfigured, or deleted. Primitives are always frozen.
+ *
+ * var frozenObject = Object.freeze({});
+ *
+ * expect(frozenObject).to.be.frozen;
+ * expect(1).to.be.frozen;
+ *
+ * Add `.not` earlier in the chain to negate `.frozen`.
+ *
+ * expect({a: 1}).to.not.be.frozen;
+ *
+ * A custom error message can be given as the second argument to `expect`.
+ *
+ * expect({a: 1}, 'nooo why fail??').to.be.frozen;
+ *
+ * @name frozen
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('frozen', function() {
+ var obj = flag(this, 'object');
+
+ // In ES5, if the argument to this method is a primitive, then it will cause a TypeError.
+ // In ES6, a non-object argument will be treated as if it was a frozen ordinary object, simply return true.
+ // See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isFrozen
+ // The following provides ES6 behavior for ES5 environments.
+
+ var isFrozen = obj === Object(obj) ? Object.isFrozen(obj) : true;
+
+ this.assert(
+ isFrozen
+ , 'expected #{this} to be frozen'
+ , 'expected #{this} to not be frozen'
+ );
+ });
+
+ /**
+ * ### .finite
+ *
+ * Asserts that the target is a number, and isn't `NaN` or positive/negative
+ * `Infinity`.
+ *
+ * expect(1).to.be.finite;
+ *
+ * Add `.not` earlier in the chain to negate `.finite`. However, it's
+ * dangerous to do so. The problem is that it creates uncertain expectations
+ * by asserting that the subject either isn't a number, or that it's `NaN`, or
+ * that it's positive `Infinity`, or that it's negative `Infinity`. It's often
+ * best to identify the exact output that's expected, and then write an
+ * assertion that only accepts that exact output.
+ *
+ * When the target isn't expected to be a number, it's often best to assert
+ * that it's the expected type, rather than asserting that it isn't one of
+ * many unexpected types.
+ *
+ * expect('foo').to.be.a('string'); // Recommended
+ * expect('foo').to.not.be.finite; // Not recommended
+ *
+ * When the target is expected to be `NaN`, it's often best to assert exactly
+ * that.
+ *
+ * expect(NaN).to.be.NaN; // Recommended
+ * expect(NaN).to.not.be.finite; // Not recommended
+ *
+ * When the target is expected to be positive infinity, it's often best to
+ * assert exactly that.
+ *
+ * expect(Infinity).to.equal(Infinity); // Recommended
+ * expect(Infinity).to.not.be.finite; // Not recommended
+ *
+ * When the target is expected to be negative infinity, it's often best to
+ * assert exactly that.
+ *
+ * expect(-Infinity).to.equal(-Infinity); // Recommended
+ * expect(-Infinity).to.not.be.finite; // Not recommended
+ *
+ * A custom error message can be given as the second argument to `expect`.
+ *
+ * expect('foo', 'nooo why fail??').to.be.finite;
+ *
+ * @name finite
+ * @namespace BDD
+ * @api public
+ */
+
+ Assertion.addProperty('finite', function(msg) {
+ var obj = flag(this, 'object');
+
+ this.assert(
+ typeof obj === 'number' && isFinite(obj)
+ , 'expected #{this} to be a finite number'
+ , 'expected #{this} to not be a finite number'
+ );
+ });
+};
+
+},{}],6:[function(require,module,exports){
+/*!
+ * chai
+ * Copyright(c) 2011-2014 Jake Luer
+ * MIT Licensed
+ */
+
+module.exports = function (chai, util) {
+ /*!
+ * Chai dependencies.
+ */
+
+ var Assertion = chai.Assertion
+ , flag = util.flag;
+
+ /*!
+ * Module export.
+ */
+
+ /**
+ * ### assert(expression, message)
+ *
+ * Write your own test expressions.
+ *
+ * assert('foo' !== 'bar', 'foo is not bar');
+ * assert(Array.isArray([]), 'empty arrays are arrays');
+ *
+ * @param {Mixed} expression to test for truthiness
+ * @param {String} message to display on error
+ * @name assert
+ * @namespace Assert
+ * @api public
+ */
+
+ var assert = chai.assert = function (express, errmsg) {
+ var test = new Assertion(null, null, chai.assert, true);
+ test.assert(
+ express
+ , errmsg
+ , '[ negation message unavailable ]'
+ );
+ };
+
+ /**
+ * ### .fail([message])
+ * ### .fail(actual, expected, [message], [operator])
+ *
+ * Throw a failure. Node.js `assert` module-compatible.
+ *
+ * assert.fail();
+ * assert.fail("custom error message");
+ * assert.fail(1, 2);
+ * assert.fail(1, 2, "custom error message");
+ * assert.fail(1, 2, "custom error message", ">");
+ * assert.fail(1, 2, undefined, ">");
+ *
+ * @name fail
+ * @param {Mixed} actual
+ * @param {Mixed} expected
+ * @param {String} message
+ * @param {String} operator
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.fail = function (actual, expected, message, operator) {
+ if (arguments.length < 2) {
+ // Comply with Node's fail([message]) interface
+
+ message = actual;
+ actual = undefined;
+ }
+
+ message = message || 'assert.fail()';
+ throw new chai.AssertionError(message, {
+ actual: actual
+ , expected: expected
+ , operator: operator
+ }, assert.fail);
+ };
+
+ /**
+ * ### .isOk(object, [message])
+ *
+ * Asserts that `object` is truthy.
+ *
+ * assert.isOk('everything', 'everything is ok');
+ * assert.isOk(false, 'this will fail');
+ *
+ * @name isOk
+ * @alias ok
+ * @param {Mixed} object to test
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isOk = function (val, msg) {
+ new Assertion(val, msg, assert.isOk, true).is.ok;
+ };
+
+ /**
+ * ### .isNotOk(object, [message])
+ *
+ * Asserts that `object` is falsy.
+ *
+ * assert.isNotOk('everything', 'this will fail');
+ * assert.isNotOk(false, 'this will pass');
+ *
+ * @name isNotOk
+ * @alias notOk
+ * @param {Mixed} object to test
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isNotOk = function (val, msg) {
+ new Assertion(val, msg, assert.isNotOk, true).is.not.ok;
+ };
+
+ /**
+ * ### .equal(actual, expected, [message])
+ *
+ * Asserts non-strict equality (`==`) of `actual` and `expected`.
+ *
+ * assert.equal(3, '3', '== coerces values to strings');
+ *
+ * @name equal
+ * @param {Mixed} actual
+ * @param {Mixed} expected
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.equal = function (act, exp, msg) {
+ var test = new Assertion(act, msg, assert.equal, true);
+
+ test.assert(
+ exp == flag(test, 'object')
+ , 'expected #{this} to equal #{exp}'
+ , 'expected #{this} to not equal #{act}'
+ , exp
+ , act
+ , true
+ );
+ };
+
+ /**
+ * ### .notEqual(actual, expected, [message])
+ *
+ * Asserts non-strict inequality (`!=`) of `actual` and `expected`.
+ *
+ * assert.notEqual(3, 4, 'these numbers are not equal');
+ *
+ * @name notEqual
+ * @param {Mixed} actual
+ * @param {Mixed} expected
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notEqual = function (act, exp, msg) {
+ var test = new Assertion(act, msg, assert.notEqual, true);
+
+ test.assert(
+ exp != flag(test, 'object')
+ , 'expected #{this} to not equal #{exp}'
+ , 'expected #{this} to equal #{act}'
+ , exp
+ , act
+ , true
+ );
+ };
+
+ /**
+ * ### .strictEqual(actual, expected, [message])
+ *
+ * Asserts strict equality (`===`) of `actual` and `expected`.
+ *
+ * assert.strictEqual(true, true, 'these booleans are strictly equal');
+ *
+ * @name strictEqual
+ * @param {Mixed} actual
+ * @param {Mixed} expected
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.strictEqual = function (act, exp, msg) {
+ new Assertion(act, msg, assert.strictEqual, true).to.equal(exp);
+ };
+
+ /**
+ * ### .notStrictEqual(actual, expected, [message])
+ *
+ * Asserts strict inequality (`!==`) of `actual` and `expected`.
+ *
+ * assert.notStrictEqual(3, '3', 'no coercion for strict equality');
+ *
+ * @name notStrictEqual
+ * @param {Mixed} actual
+ * @param {Mixed} expected
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notStrictEqual = function (act, exp, msg) {
+ new Assertion(act, msg, assert.notStrictEqual, true).to.not.equal(exp);
+ };
+
+ /**
+ * ### .deepEqual(actual, expected, [message])
+ *
+ * Asserts that `actual` is deeply equal to `expected`.
+ *
+ * assert.deepEqual({ tea: 'green' }, { tea: 'green' });
+ *
+ * @name deepEqual
+ * @param {Mixed} actual
+ * @param {Mixed} expected
+ * @param {String} message
+ * @alias deepStrictEqual
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.deepEqual = assert.deepStrictEqual = function (act, exp, msg) {
+ new Assertion(act, msg, assert.deepEqual, true).to.eql(exp);
+ };
+
+ /**
+ * ### .notDeepEqual(actual, expected, [message])
+ *
+ * Assert that `actual` is not deeply equal to `expected`.
+ *
+ * assert.notDeepEqual({ tea: 'green' }, { tea: 'jasmine' });
+ *
+ * @name notDeepEqual
+ * @param {Mixed} actual
+ * @param {Mixed} expected
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notDeepEqual = function (act, exp, msg) {
+ new Assertion(act, msg, assert.notDeepEqual, true).to.not.eql(exp);
+ };
+
+ /**
+ * ### .isAbove(valueToCheck, valueToBeAbove, [message])
+ *
+ * Asserts `valueToCheck` is strictly greater than (>) `valueToBeAbove`.
+ *
+ * assert.isAbove(5, 2, '5 is strictly greater than 2');
+ *
+ * @name isAbove
+ * @param {Mixed} valueToCheck
+ * @param {Mixed} valueToBeAbove
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isAbove = function (val, abv, msg) {
+ new Assertion(val, msg, assert.isAbove, true).to.be.above(abv);
+ };
+
+ /**
+ * ### .isAtLeast(valueToCheck, valueToBeAtLeast, [message])
+ *
+ * Asserts `valueToCheck` is greater than or equal to (>=) `valueToBeAtLeast`.
+ *
+ * assert.isAtLeast(5, 2, '5 is greater or equal to 2');
+ * assert.isAtLeast(3, 3, '3 is greater or equal to 3');
+ *
+ * @name isAtLeast
+ * @param {Mixed} valueToCheck
+ * @param {Mixed} valueToBeAtLeast
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isAtLeast = function (val, atlst, msg) {
+ new Assertion(val, msg, assert.isAtLeast, true).to.be.least(atlst);
+ };
+
+ /**
+ * ### .isBelow(valueToCheck, valueToBeBelow, [message])
+ *
+ * Asserts `valueToCheck` is strictly less than (<) `valueToBeBelow`.
+ *
+ * assert.isBelow(3, 6, '3 is strictly less than 6');
+ *
+ * @name isBelow
+ * @param {Mixed} valueToCheck
+ * @param {Mixed} valueToBeBelow
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isBelow = function (val, blw, msg) {
+ new Assertion(val, msg, assert.isBelow, true).to.be.below(blw);
+ };
+
+ /**
+ * ### .isAtMost(valueToCheck, valueToBeAtMost, [message])
+ *
+ * Asserts `valueToCheck` is less than or equal to (<=) `valueToBeAtMost`.
+ *
+ * assert.isAtMost(3, 6, '3 is less than or equal to 6');
+ * assert.isAtMost(4, 4, '4 is less than or equal to 4');
+ *
+ * @name isAtMost
+ * @param {Mixed} valueToCheck
+ * @param {Mixed} valueToBeAtMost
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isAtMost = function (val, atmst, msg) {
+ new Assertion(val, msg, assert.isAtMost, true).to.be.most(atmst);
+ };
+
+ /**
+ * ### .isTrue(value, [message])
+ *
+ * Asserts that `value` is true.
+ *
+ * var teaServed = true;
+ * assert.isTrue(teaServed, 'the tea has been served');
+ *
+ * @name isTrue
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isTrue = function (val, msg) {
+ new Assertion(val, msg, assert.isTrue, true).is['true'];
+ };
+
+ /**
+ * ### .isNotTrue(value, [message])
+ *
+ * Asserts that `value` is not true.
+ *
+ * var tea = 'tasty chai';
+ * assert.isNotTrue(tea, 'great, time for tea!');
+ *
+ * @name isNotTrue
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isNotTrue = function (val, msg) {
+ new Assertion(val, msg, assert.isNotTrue, true).to.not.equal(true);
+ };
+
+ /**
+ * ### .isFalse(value, [message])
+ *
+ * Asserts that `value` is false.
+ *
+ * var teaServed = false;
+ * assert.isFalse(teaServed, 'no tea yet? hmm...');
+ *
+ * @name isFalse
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isFalse = function (val, msg) {
+ new Assertion(val, msg, assert.isFalse, true).is['false'];
+ };
+
+ /**
+ * ### .isNotFalse(value, [message])
+ *
+ * Asserts that `value` is not false.
+ *
+ * var tea = 'tasty chai';
+ * assert.isNotFalse(tea, 'great, time for tea!');
+ *
+ * @name isNotFalse
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isNotFalse = function (val, msg) {
+ new Assertion(val, msg, assert.isNotFalse, true).to.not.equal(false);
+ };
+
+ /**
+ * ### .isNull(value, [message])
+ *
+ * Asserts that `value` is null.
+ *
+ * assert.isNull(err, 'there was no error');
+ *
+ * @name isNull
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isNull = function (val, msg) {
+ new Assertion(val, msg, assert.isNull, true).to.equal(null);
+ };
+
+ /**
+ * ### .isNotNull(value, [message])
+ *
+ * Asserts that `value` is not null.
+ *
+ * var tea = 'tasty chai';
+ * assert.isNotNull(tea, 'great, time for tea!');
+ *
+ * @name isNotNull
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isNotNull = function (val, msg) {
+ new Assertion(val, msg, assert.isNotNull, true).to.not.equal(null);
+ };
+
+ /**
+ * ### .isNaN
+ *
+ * Asserts that value is NaN.
+ *
+ * assert.isNaN(NaN, 'NaN is NaN');
+ *
+ * @name isNaN
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isNaN = function (val, msg) {
+ new Assertion(val, msg, assert.isNaN, true).to.be.NaN;
+ };
+
+ /**
+ * ### .isNotNaN
+ *
+ * Asserts that value is not NaN.
+ *
+ * assert.isNotNaN(4, '4 is not NaN');
+ *
+ * @name isNotNaN
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+ assert.isNotNaN = function (val, msg) {
+ new Assertion(val, msg, assert.isNotNaN, true).not.to.be.NaN;
+ };
+
+ /**
+ * ### .exists
+ *
+ * Asserts that the target is neither `null` nor `undefined`.
+ *
+ * var foo = 'hi';
+ *
+ * assert.exists(foo, 'foo is neither `null` nor `undefined`');
+ *
+ * @name exists
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.exists = function (val, msg) {
+ new Assertion(val, msg, assert.exists, true).to.exist;
+ };
+
+ /**
+ * ### .notExists
+ *
+ * Asserts that the target is either `null` or `undefined`.
+ *
+ * var bar = null
+ * , baz;
+ *
+ * assert.notExists(bar);
+ * assert.notExists(baz, 'baz is either null or undefined');
+ *
+ * @name notExists
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notExists = function (val, msg) {
+ new Assertion(val, msg, assert.notExists, true).to.not.exist;
+ };
+
+ /**
+ * ### .isUndefined(value, [message])
+ *
+ * Asserts that `value` is `undefined`.
+ *
+ * var tea;
+ * assert.isUndefined(tea, 'no tea defined');
+ *
+ * @name isUndefined
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isUndefined = function (val, msg) {
+ new Assertion(val, msg, assert.isUndefined, true).to.equal(undefined);
+ };
+
+ /**
+ * ### .isDefined(value, [message])
+ *
+ * Asserts that `value` is not `undefined`.
+ *
+ * var tea = 'cup of chai';
+ * assert.isDefined(tea, 'tea has been defined');
+ *
+ * @name isDefined
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isDefined = function (val, msg) {
+ new Assertion(val, msg, assert.isDefined, true).to.not.equal(undefined);
+ };
+
+ /**
+ * ### .isFunction(value, [message])
+ *
+ * Asserts that `value` is a function.
+ *
+ * function serveTea() { return 'cup of tea'; };
+ * assert.isFunction(serveTea, 'great, we can have tea now');
+ *
+ * @name isFunction
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isFunction = function (val, msg) {
+ new Assertion(val, msg, assert.isFunction, true).to.be.a('function');
+ };
+
+ /**
+ * ### .isNotFunction(value, [message])
+ *
+ * Asserts that `value` is _not_ a function.
+ *
+ * var serveTea = [ 'heat', 'pour', 'sip' ];
+ * assert.isNotFunction(serveTea, 'great, we have listed the steps');
+ *
+ * @name isNotFunction
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isNotFunction = function (val, msg) {
+ new Assertion(val, msg, assert.isNotFunction, true).to.not.be.a('function');
+ };
+
+ /**
+ * ### .isObject(value, [message])
+ *
+ * Asserts that `value` is an object of type 'Object' (as revealed by `Object.prototype.toString`).
+ * _The assertion does not match subclassed objects._
+ *
+ * var selection = { name: 'Chai', serve: 'with spices' };
+ * assert.isObject(selection, 'tea selection is an object');
+ *
+ * @name isObject
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isObject = function (val, msg) {
+ new Assertion(val, msg, assert.isObject, true).to.be.a('object');
+ };
+
+ /**
+ * ### .isNotObject(value, [message])
+ *
+ * Asserts that `value` is _not_ an object of type 'Object' (as revealed by `Object.prototype.toString`).
+ *
+ * var selection = 'chai'
+ * assert.isNotObject(selection, 'tea selection is not an object');
+ * assert.isNotObject(null, 'null is not an object');
+ *
+ * @name isNotObject
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isNotObject = function (val, msg) {
+ new Assertion(val, msg, assert.isNotObject, true).to.not.be.a('object');
+ };
+
+ /**
+ * ### .isArray(value, [message])
+ *
+ * Asserts that `value` is an array.
+ *
+ * var menu = [ 'green', 'chai', 'oolong' ];
+ * assert.isArray(menu, 'what kind of tea do we want?');
+ *
+ * @name isArray
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isArray = function (val, msg) {
+ new Assertion(val, msg, assert.isArray, true).to.be.an('array');
+ };
+
+ /**
+ * ### .isNotArray(value, [message])
+ *
+ * Asserts that `value` is _not_ an array.
+ *
+ * var menu = 'green|chai|oolong';
+ * assert.isNotArray(menu, 'what kind of tea do we want?');
+ *
+ * @name isNotArray
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isNotArray = function (val, msg) {
+ new Assertion(val, msg, assert.isNotArray, true).to.not.be.an('array');
+ };
+
+ /**
+ * ### .isString(value, [message])
+ *
+ * Asserts that `value` is a string.
+ *
+ * var teaOrder = 'chai';
+ * assert.isString(teaOrder, 'order placed');
+ *
+ * @name isString
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isString = function (val, msg) {
+ new Assertion(val, msg, assert.isString, true).to.be.a('string');
+ };
+
+ /**
+ * ### .isNotString(value, [message])
+ *
+ * Asserts that `value` is _not_ a string.
+ *
+ * var teaOrder = 4;
+ * assert.isNotString(teaOrder, 'order placed');
+ *
+ * @name isNotString
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isNotString = function (val, msg) {
+ new Assertion(val, msg, assert.isNotString, true).to.not.be.a('string');
+ };
+
+ /**
+ * ### .isNumber(value, [message])
+ *
+ * Asserts that `value` is a number.
+ *
+ * var cups = 2;
+ * assert.isNumber(cups, 'how many cups');
+ *
+ * @name isNumber
+ * @param {Number} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isNumber = function (val, msg) {
+ new Assertion(val, msg, assert.isNumber, true).to.be.a('number');
+ };
+
+ /**
+ * ### .isNotNumber(value, [message])
+ *
+ * Asserts that `value` is _not_ a number.
+ *
+ * var cups = '2 cups please';
+ * assert.isNotNumber(cups, 'how many cups');
+ *
+ * @name isNotNumber
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isNotNumber = function (val, msg) {
+ new Assertion(val, msg, assert.isNotNumber, true).to.not.be.a('number');
+ };
+
+ /**
+ * ### .isFinite(value, [message])
+ *
+ * Asserts that `value` is a finite number. Unlike `.isNumber`, this will fail for `NaN` and `Infinity`.
+ *
+ * var cups = 2;
+ * assert.isFinite(cups, 'how many cups');
+ *
+ * assert.isFinite(NaN); // throws
+ *
+ * @name isFinite
+ * @param {Number} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isFinite = function (val, msg) {
+ new Assertion(val, msg, assert.isFinite, true).to.be.finite;
+ };
+
+ /**
+ * ### .isBoolean(value, [message])
+ *
+ * Asserts that `value` is a boolean.
+ *
+ * var teaReady = true
+ * , teaServed = false;
+ *
+ * assert.isBoolean(teaReady, 'is the tea ready');
+ * assert.isBoolean(teaServed, 'has tea been served');
+ *
+ * @name isBoolean
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isBoolean = function (val, msg) {
+ new Assertion(val, msg, assert.isBoolean, true).to.be.a('boolean');
+ };
+
+ /**
+ * ### .isNotBoolean(value, [message])
+ *
+ * Asserts that `value` is _not_ a boolean.
+ *
+ * var teaReady = 'yep'
+ * , teaServed = 'nope';
+ *
+ * assert.isNotBoolean(teaReady, 'is the tea ready');
+ * assert.isNotBoolean(teaServed, 'has tea been served');
+ *
+ * @name isNotBoolean
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isNotBoolean = function (val, msg) {
+ new Assertion(val, msg, assert.isNotBoolean, true).to.not.be.a('boolean');
+ };
+
+ /**
+ * ### .typeOf(value, name, [message])
+ *
+ * Asserts that `value`'s type is `name`, as determined by
+ * `Object.prototype.toString`.
+ *
+ * assert.typeOf({ tea: 'chai' }, 'object', 'we have an object');
+ * assert.typeOf(['chai', 'jasmine'], 'array', 'we have an array');
+ * assert.typeOf('tea', 'string', 'we have a string');
+ * assert.typeOf(/tea/, 'regexp', 'we have a regular expression');
+ * assert.typeOf(null, 'null', 'we have a null');
+ * assert.typeOf(undefined, 'undefined', 'we have an undefined');
+ *
+ * @name typeOf
+ * @param {Mixed} value
+ * @param {String} name
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.typeOf = function (val, type, msg) {
+ new Assertion(val, msg, assert.typeOf, true).to.be.a(type);
+ };
+
+ /**
+ * ### .notTypeOf(value, name, [message])
+ *
+ * Asserts that `value`'s type is _not_ `name`, as determined by
+ * `Object.prototype.toString`.
+ *
+ * assert.notTypeOf('tea', 'number', 'strings are not numbers');
+ *
+ * @name notTypeOf
+ * @param {Mixed} value
+ * @param {String} typeof name
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notTypeOf = function (val, type, msg) {
+ new Assertion(val, msg, assert.notTypeOf, true).to.not.be.a(type);
+ };
+
+ /**
+ * ### .instanceOf(object, constructor, [message])
+ *
+ * Asserts that `value` is an instance of `constructor`.
+ *
+ * var Tea = function (name) { this.name = name; }
+ * , chai = new Tea('chai');
+ *
+ * assert.instanceOf(chai, Tea, 'chai is an instance of tea');
+ *
+ * @name instanceOf
+ * @param {Object} object
+ * @param {Constructor} constructor
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.instanceOf = function (val, type, msg) {
+ new Assertion(val, msg, assert.instanceOf, true).to.be.instanceOf(type);
+ };
+
+ /**
+ * ### .notInstanceOf(object, constructor, [message])
+ *
+ * Asserts `value` is not an instance of `constructor`.
+ *
+ * var Tea = function (name) { this.name = name; }
+ * , chai = new String('chai');
+ *
+ * assert.notInstanceOf(chai, Tea, 'chai is not an instance of tea');
+ *
+ * @name notInstanceOf
+ * @param {Object} object
+ * @param {Constructor} constructor
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notInstanceOf = function (val, type, msg) {
+ new Assertion(val, msg, assert.notInstanceOf, true)
+ .to.not.be.instanceOf(type);
+ };
+
+ /**
+ * ### .include(haystack, needle, [message])
+ *
+ * Asserts that `haystack` includes `needle`. Can be used to assert the
+ * inclusion of a value in an array, a substring in a string, or a subset of
+ * properties in an object.
+ *
+ * assert.include([1,2,3], 2, 'array contains value');
+ * assert.include('foobar', 'foo', 'string contains substring');
+ * assert.include({ foo: 'bar', hello: 'universe' }, { foo: 'bar' }, 'object contains property');
+ *
+ * Strict equality (===) is used. When asserting the inclusion of a value in
+ * an array, the array is searched for an element that's strictly equal to the
+ * given value. When asserting a subset of properties in an object, the object
+ * is searched for the given property keys, checking that each one is present
+ * and strictly equal to the given property value. For instance:
+ *
+ * var obj1 = {a: 1}
+ * , obj2 = {b: 2};
+ * assert.include([obj1, obj2], obj1);
+ * assert.include({foo: obj1, bar: obj2}, {foo: obj1});
+ * assert.include({foo: obj1, bar: obj2}, {foo: obj1, bar: obj2});
+ *
+ * @name include
+ * @param {Array|String} haystack
+ * @param {Mixed} needle
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.include = function (exp, inc, msg) {
+ new Assertion(exp, msg, assert.include, true).include(inc);
+ };
+
+ /**
+ * ### .notInclude(haystack, needle, [message])
+ *
+ * Asserts that `haystack` does not include `needle`. Can be used to assert
+ * the absence of a value in an array, a substring in a string, or a subset of
+ * properties in an object.
+ *
+ * assert.notInclude([1,2,3], 4, "array doesn't contain value");
+ * assert.notInclude('foobar', 'baz', "string doesn't contain substring");
+ * assert.notInclude({ foo: 'bar', hello: 'universe' }, { foo: 'baz' }, 'object doesn't contain property');
+ *
+ * Strict equality (===) is used. When asserting the absence of a value in an
+ * array, the array is searched to confirm the absence of an element that's
+ * strictly equal to the given value. When asserting a subset of properties in
+ * an object, the object is searched to confirm that at least one of the given
+ * property keys is either not present or not strictly equal to the given
+ * property value. For instance:
+ *
+ * var obj1 = {a: 1}
+ * , obj2 = {b: 2};
+ * assert.notInclude([obj1, obj2], {a: 1});
+ * assert.notInclude({foo: obj1, bar: obj2}, {foo: {a: 1}});
+ * assert.notInclude({foo: obj1, bar: obj2}, {foo: obj1, bar: {b: 2}});
+ *
+ * @name notInclude
+ * @param {Array|String} haystack
+ * @param {Mixed} needle
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notInclude = function (exp, inc, msg) {
+ new Assertion(exp, msg, assert.notInclude, true).not.include(inc);
+ };
+
+ /**
+ * ### .deepInclude(haystack, needle, [message])
+ *
+ * Asserts that `haystack` includes `needle`. Can be used to assert the
+ * inclusion of a value in an array or a subset of properties in an object.
+ * Deep equality is used.
+ *
+ * var obj1 = {a: 1}
+ * , obj2 = {b: 2};
+ * assert.deepInclude([obj1, obj2], {a: 1});
+ * assert.deepInclude({foo: obj1, bar: obj2}, {foo: {a: 1}});
+ * assert.deepInclude({foo: obj1, bar: obj2}, {foo: {a: 1}, bar: {b: 2}});
+ *
+ * @name deepInclude
+ * @param {Array|String} haystack
+ * @param {Mixed} needle
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.deepInclude = function (exp, inc, msg) {
+ new Assertion(exp, msg, assert.deepInclude, true).deep.include(inc);
+ };
+
+ /**
+ * ### .notDeepInclude(haystack, needle, [message])
+ *
+ * Asserts that `haystack` does not include `needle`. Can be used to assert
+ * the absence of a value in an array or a subset of properties in an object.
+ * Deep equality is used.
+ *
+ * var obj1 = {a: 1}
+ * , obj2 = {b: 2};
+ * assert.notDeepInclude([obj1, obj2], {a: 9});
+ * assert.notDeepInclude({foo: obj1, bar: obj2}, {foo: {a: 9}});
+ * assert.notDeepInclude({foo: obj1, bar: obj2}, {foo: {a: 1}, bar: {b: 9}});
+ *
+ * @name notDeepInclude
+ * @param {Array|String} haystack
+ * @param {Mixed} needle
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notDeepInclude = function (exp, inc, msg) {
+ new Assertion(exp, msg, assert.notDeepInclude, true).not.deep.include(inc);
+ };
+
+ /**
+ * ### .nestedInclude(haystack, needle, [message])
+ *
+ * Asserts that 'haystack' includes 'needle'.
+ * Can be used to assert the inclusion of a subset of properties in an
+ * object.
+ * Enables the use of dot- and bracket-notation for referencing nested
+ * properties.
+ * '[]' and '.' in property names can be escaped using double backslashes.
+ *
+ * assert.nestedInclude({'.a': {'b': 'x'}}, {'\\.a.[b]': 'x'});
+ * assert.nestedInclude({'a': {'[b]': 'x'}}, {'a.\\[b\\]': 'x'});
+ *
+ * @name nestedInclude
+ * @param {Object} haystack
+ * @param {Object} needle
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.nestedInclude = function (exp, inc, msg) {
+ new Assertion(exp, msg, assert.nestedInclude, true).nested.include(inc);
+ };
+
+ /**
+ * ### .notNestedInclude(haystack, needle, [message])
+ *
+ * Asserts that 'haystack' does not include 'needle'.
+ * Can be used to assert the absence of a subset of properties in an
+ * object.
+ * Enables the use of dot- and bracket-notation for referencing nested
+ * properties.
+ * '[]' and '.' in property names can be escaped using double backslashes.
+ *
+ * assert.notNestedInclude({'.a': {'b': 'x'}}, {'\\.a.b': 'y'});
+ * assert.notNestedInclude({'a': {'[b]': 'x'}}, {'a.\\[b\\]': 'y'});
+ *
+ * @name notNestedInclude
+ * @param {Object} haystack
+ * @param {Object} needle
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notNestedInclude = function (exp, inc, msg) {
+ new Assertion(exp, msg, assert.notNestedInclude, true)
+ .not.nested.include(inc);
+ };
+
+ /**
+ * ### .deepNestedInclude(haystack, needle, [message])
+ *
+ * Asserts that 'haystack' includes 'needle'.
+ * Can be used to assert the inclusion of a subset of properties in an
+ * object while checking for deep equality.
+ * Enables the use of dot- and bracket-notation for referencing nested
+ * properties.
+ * '[]' and '.' in property names can be escaped using double backslashes.
+ *
+ * assert.deepNestedInclude({a: {b: [{x: 1}]}}, {'a.b[0]': {x: 1}});
+ * assert.deepNestedInclude({'.a': {'[b]': {x: 1}}}, {'\\.a.\\[b\\]': {x: 1}});
+ *
+ * @name deepNestedInclude
+ * @param {Object} haystack
+ * @param {Object} needle
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.deepNestedInclude = function(exp, inc, msg) {
+ new Assertion(exp, msg, assert.deepNestedInclude, true)
+ .deep.nested.include(inc);
+ };
+
+ /**
+ * ### .notDeepNestedInclude(haystack, needle, [message])
+ *
+ * Asserts that 'haystack' does not include 'needle'.
+ * Can be used to assert the absence of a subset of properties in an
+ * object while checking for deep equality.
+ * Enables the use of dot- and bracket-notation for referencing nested
+ * properties.
+ * '[]' and '.' in property names can be escaped using double backslashes.
+ *
+ * assert.notDeepNestedInclude({a: {b: [{x: 1}]}}, {'a.b[0]': {y: 1}})
+ * assert.notDeepNestedInclude({'.a': {'[b]': {x: 1}}}, {'\\.a.\\[b\\]': {y: 2}});
+ *
+ * @name notDeepNestedInclude
+ * @param {Object} haystack
+ * @param {Object} needle
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notDeepNestedInclude = function(exp, inc, msg) {
+ new Assertion(exp, msg, assert.notDeepNestedInclude, true)
+ .not.deep.nested.include(inc);
+ };
+
+ /**
+ * ### .ownInclude(haystack, needle, [message])
+ *
+ * Asserts that 'haystack' includes 'needle'.
+ * Can be used to assert the inclusion of a subset of properties in an
+ * object while ignoring inherited properties.
+ *
+ * assert.ownInclude({ a: 1 }, { a: 1 });
+ *
+ * @name ownInclude
+ * @param {Object} haystack
+ * @param {Object} needle
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.ownInclude = function(exp, inc, msg) {
+ new Assertion(exp, msg, assert.ownInclude, true).own.include(inc);
+ };
+
+ /**
+ * ### .notOwnInclude(haystack, needle, [message])
+ *
+ * Asserts that 'haystack' includes 'needle'.
+ * Can be used to assert the absence of a subset of properties in an
+ * object while ignoring inherited properties.
+ *
+ * Object.prototype.b = 2;
+ *
+ * assert.notOwnInclude({ a: 1 }, { b: 2 });
+ *
+ * @name notOwnInclude
+ * @param {Object} haystack
+ * @param {Object} needle
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notOwnInclude = function(exp, inc, msg) {
+ new Assertion(exp, msg, assert.notOwnInclude, true).not.own.include(inc);
+ };
+
+ /**
+ * ### .deepOwnInclude(haystack, needle, [message])
+ *
+ * Asserts that 'haystack' includes 'needle'.
+ * Can be used to assert the inclusion of a subset of properties in an
+ * object while ignoring inherited properties and checking for deep equality.
+ *
+ * assert.deepOwnInclude({a: {b: 2}}, {a: {b: 2}});
+ *
+ * @name deepOwnInclude
+ * @param {Object} haystack
+ * @param {Object} needle
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.deepOwnInclude = function(exp, inc, msg) {
+ new Assertion(exp, msg, assert.deepOwnInclude, true)
+ .deep.own.include(inc);
+ };
+
+ /**
+ * ### .notDeepOwnInclude(haystack, needle, [message])
+ *
+ * Asserts that 'haystack' includes 'needle'.
+ * Can be used to assert the absence of a subset of properties in an
+ * object while ignoring inherited properties and checking for deep equality.
+ *
+ * assert.notDeepOwnInclude({a: {b: 2}}, {a: {c: 3}});
+ *
+ * @name notDeepOwnInclude
+ * @param {Object} haystack
+ * @param {Object} needle
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notDeepOwnInclude = function(exp, inc, msg) {
+ new Assertion(exp, msg, assert.notDeepOwnInclude, true)
+ .not.deep.own.include(inc);
+ };
+
+ /**
+ * ### .match(value, regexp, [message])
+ *
+ * Asserts that `value` matches the regular expression `regexp`.
+ *
+ * assert.match('foobar', /^foo/, 'regexp matches');
+ *
+ * @name match
+ * @param {Mixed} value
+ * @param {RegExp} regexp
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.match = function (exp, re, msg) {
+ new Assertion(exp, msg, assert.match, true).to.match(re);
+ };
+
+ /**
+ * ### .notMatch(value, regexp, [message])
+ *
+ * Asserts that `value` does not match the regular expression `regexp`.
+ *
+ * assert.notMatch('foobar', /^foo/, 'regexp does not match');
+ *
+ * @name notMatch
+ * @param {Mixed} value
+ * @param {RegExp} regexp
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notMatch = function (exp, re, msg) {
+ new Assertion(exp, msg, assert.notMatch, true).to.not.match(re);
+ };
+
+ /**
+ * ### .property(object, property, [message])
+ *
+ * Asserts that `object` has a direct or inherited property named by
+ * `property`.
+ *
+ * assert.property({ tea: { green: 'matcha' }}, 'tea');
+ * assert.property({ tea: { green: 'matcha' }}, 'toString');
+ *
+ * @name property
+ * @param {Object} object
+ * @param {String} property
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.property = function (obj, prop, msg) {
+ new Assertion(obj, msg, assert.property, true).to.have.property(prop);
+ };
+
+ /**
+ * ### .notProperty(object, property, [message])
+ *
+ * Asserts that `object` does _not_ have a direct or inherited property named
+ * by `property`.
+ *
+ * assert.notProperty({ tea: { green: 'matcha' }}, 'coffee');
+ *
+ * @name notProperty
+ * @param {Object} object
+ * @param {String} property
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notProperty = function (obj, prop, msg) {
+ new Assertion(obj, msg, assert.notProperty, true)
+ .to.not.have.property(prop);
+ };
+
+ /**
+ * ### .propertyVal(object, property, value, [message])
+ *
+ * Asserts that `object` has a direct or inherited property named by
+ * `property` with a value given by `value`. Uses a strict equality check
+ * (===).
+ *
+ * assert.propertyVal({ tea: 'is good' }, 'tea', 'is good');
+ *
+ * @name propertyVal
+ * @param {Object} object
+ * @param {String} property
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.propertyVal = function (obj, prop, val, msg) {
+ new Assertion(obj, msg, assert.propertyVal, true)
+ .to.have.property(prop, val);
+ };
+
+ /**
+ * ### .notPropertyVal(object, property, value, [message])
+ *
+ * Asserts that `object` does _not_ have a direct or inherited property named
+ * by `property` with value given by `value`. Uses a strict equality check
+ * (===).
+ *
+ * assert.notPropertyVal({ tea: 'is good' }, 'tea', 'is bad');
+ * assert.notPropertyVal({ tea: 'is good' }, 'coffee', 'is good');
+ *
+ * @name notPropertyVal
+ * @param {Object} object
+ * @param {String} property
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notPropertyVal = function (obj, prop, val, msg) {
+ new Assertion(obj, msg, assert.notPropertyVal, true)
+ .to.not.have.property(prop, val);
+ };
+
+ /**
+ * ### .deepPropertyVal(object, property, value, [message])
+ *
+ * Asserts that `object` has a direct or inherited property named by
+ * `property` with a value given by `value`. Uses a deep equality check.
+ *
+ * assert.deepPropertyVal({ tea: { green: 'matcha' } }, 'tea', { green: 'matcha' });
+ *
+ * @name deepPropertyVal
+ * @param {Object} object
+ * @param {String} property
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.deepPropertyVal = function (obj, prop, val, msg) {
+ new Assertion(obj, msg, assert.deepPropertyVal, true)
+ .to.have.deep.property(prop, val);
+ };
+
+ /**
+ * ### .notDeepPropertyVal(object, property, value, [message])
+ *
+ * Asserts that `object` does _not_ have a direct or inherited property named
+ * by `property` with value given by `value`. Uses a deep equality check.
+ *
+ * assert.notDeepPropertyVal({ tea: { green: 'matcha' } }, 'tea', { black: 'matcha' });
+ * assert.notDeepPropertyVal({ tea: { green: 'matcha' } }, 'tea', { green: 'oolong' });
+ * assert.notDeepPropertyVal({ tea: { green: 'matcha' } }, 'coffee', { green: 'matcha' });
+ *
+ * @name notDeepPropertyVal
+ * @param {Object} object
+ * @param {String} property
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notDeepPropertyVal = function (obj, prop, val, msg) {
+ new Assertion(obj, msg, assert.notDeepPropertyVal, true)
+ .to.not.have.deep.property(prop, val);
+ };
+
+ /**
+ * ### .ownProperty(object, property, [message])
+ *
+ * Asserts that `object` has a direct property named by `property`. Inherited
+ * properties aren't checked.
+ *
+ * assert.ownProperty({ tea: { green: 'matcha' }}, 'tea');
+ *
+ * @name ownProperty
+ * @param {Object} object
+ * @param {String} property
+ * @param {String} message
+ * @api public
+ */
+
+ assert.ownProperty = function (obj, prop, msg) {
+ new Assertion(obj, msg, assert.ownProperty, true)
+ .to.have.own.property(prop);
+ };
+
+ /**
+ * ### .notOwnProperty(object, property, [message])
+ *
+ * Asserts that `object` does _not_ have a direct property named by
+ * `property`. Inherited properties aren't checked.
+ *
+ * assert.notOwnProperty({ tea: { green: 'matcha' }}, 'coffee');
+ * assert.notOwnProperty({}, 'toString');
+ *
+ * @name notOwnProperty
+ * @param {Object} object
+ * @param {String} property
+ * @param {String} message
+ * @api public
+ */
+
+ assert.notOwnProperty = function (obj, prop, msg) {
+ new Assertion(obj, msg, assert.notOwnProperty, true)
+ .to.not.have.own.property(prop);
+ };
+
+ /**
+ * ### .ownPropertyVal(object, property, value, [message])
+ *
+ * Asserts that `object` has a direct property named by `property` and a value
+ * equal to the provided `value`. Uses a strict equality check (===).
+ * Inherited properties aren't checked.
+ *
+ * assert.ownPropertyVal({ coffee: 'is good'}, 'coffee', 'is good');
+ *
+ * @name ownPropertyVal
+ * @param {Object} object
+ * @param {String} property
+ * @param {Mixed} value
+ * @param {String} message
+ * @api public
+ */
+
+ assert.ownPropertyVal = function (obj, prop, value, msg) {
+ new Assertion(obj, msg, assert.ownPropertyVal, true)
+ .to.have.own.property(prop, value);
+ };
+
+ /**
+ * ### .notOwnPropertyVal(object, property, value, [message])
+ *
+ * Asserts that `object` does _not_ have a direct property named by `property`
+ * with a value equal to the provided `value`. Uses a strict equality check
+ * (===). Inherited properties aren't checked.
+ *
+ * assert.notOwnPropertyVal({ tea: 'is better'}, 'tea', 'is worse');
+ * assert.notOwnPropertyVal({}, 'toString', Object.prototype.toString);
+ *
+ * @name notOwnPropertyVal
+ * @param {Object} object
+ * @param {String} property
+ * @param {Mixed} value
+ * @param {String} message
+ * @api public
+ */
+
+ assert.notOwnPropertyVal = function (obj, prop, value, msg) {
+ new Assertion(obj, msg, assert.notOwnPropertyVal, true)
+ .to.not.have.own.property(prop, value);
+ };
+
+ /**
+ * ### .deepOwnPropertyVal(object, property, value, [message])
+ *
+ * Asserts that `object` has a direct property named by `property` and a value
+ * equal to the provided `value`. Uses a deep equality check. Inherited
+ * properties aren't checked.
+ *
+ * assert.deepOwnPropertyVal({ tea: { green: 'matcha' } }, 'tea', { green: 'matcha' });
+ *
+ * @name deepOwnPropertyVal
+ * @param {Object} object
+ * @param {String} property
+ * @param {Mixed} value
+ * @param {String} message
+ * @api public
+ */
+
+ assert.deepOwnPropertyVal = function (obj, prop, value, msg) {
+ new Assertion(obj, msg, assert.deepOwnPropertyVal, true)
+ .to.have.deep.own.property(prop, value);
+ };
+
+ /**
+ * ### .notDeepOwnPropertyVal(object, property, value, [message])
+ *
+ * Asserts that `object` does _not_ have a direct property named by `property`
+ * with a value equal to the provided `value`. Uses a deep equality check.
+ * Inherited properties aren't checked.
+ *
+ * assert.notDeepOwnPropertyVal({ tea: { green: 'matcha' } }, 'tea', { black: 'matcha' });
+ * assert.notDeepOwnPropertyVal({ tea: { green: 'matcha' } }, 'tea', { green: 'oolong' });
+ * assert.notDeepOwnPropertyVal({ tea: { green: 'matcha' } }, 'coffee', { green: 'matcha' });
+ * assert.notDeepOwnPropertyVal({}, 'toString', Object.prototype.toString);
+ *
+ * @name notDeepOwnPropertyVal
+ * @param {Object} object
+ * @param {String} property
+ * @param {Mixed} value
+ * @param {String} message
+ * @api public
+ */
+
+ assert.notDeepOwnPropertyVal = function (obj, prop, value, msg) {
+ new Assertion(obj, msg, assert.notDeepOwnPropertyVal, true)
+ .to.not.have.deep.own.property(prop, value);
+ };
+
+ /**
+ * ### .nestedProperty(object, property, [message])
+ *
+ * Asserts that `object` has a direct or inherited property named by
+ * `property`, which can be a string using dot- and bracket-notation for
+ * nested reference.
+ *
+ * assert.nestedProperty({ tea: { green: 'matcha' }}, 'tea.green');
+ *
+ * @name nestedProperty
+ * @param {Object} object
+ * @param {String} property
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.nestedProperty = function (obj, prop, msg) {
+ new Assertion(obj, msg, assert.nestedProperty, true)
+ .to.have.nested.property(prop);
+ };
+
+ /**
+ * ### .notNestedProperty(object, property, [message])
+ *
+ * Asserts that `object` does _not_ have a property named by `property`, which
+ * can be a string using dot- and bracket-notation for nested reference. The
+ * property cannot exist on the object nor anywhere in its prototype chain.
+ *
+ * assert.notNestedProperty({ tea: { green: 'matcha' }}, 'tea.oolong');
+ *
+ * @name notNestedProperty
+ * @param {Object} object
+ * @param {String} property
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notNestedProperty = function (obj, prop, msg) {
+ new Assertion(obj, msg, assert.notNestedProperty, true)
+ .to.not.have.nested.property(prop);
+ };
+
+ /**
+ * ### .nestedPropertyVal(object, property, value, [message])
+ *
+ * Asserts that `object` has a property named by `property` with value given
+ * by `value`. `property` can use dot- and bracket-notation for nested
+ * reference. Uses a strict equality check (===).
+ *
+ * assert.nestedPropertyVal({ tea: { green: 'matcha' }}, 'tea.green', 'matcha');
+ *
+ * @name nestedPropertyVal
+ * @param {Object} object
+ * @param {String} property
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.nestedPropertyVal = function (obj, prop, val, msg) {
+ new Assertion(obj, msg, assert.nestedPropertyVal, true)
+ .to.have.nested.property(prop, val);
+ };
+
+ /**
+ * ### .notNestedPropertyVal(object, property, value, [message])
+ *
+ * Asserts that `object` does _not_ have a property named by `property` with
+ * value given by `value`. `property` can use dot- and bracket-notation for
+ * nested reference. Uses a strict equality check (===).
+ *
+ * assert.notNestedPropertyVal({ tea: { green: 'matcha' }}, 'tea.green', 'konacha');
+ * assert.notNestedPropertyVal({ tea: { green: 'matcha' }}, 'coffee.green', 'matcha');
+ *
+ * @name notNestedPropertyVal
+ * @param {Object} object
+ * @param {String} property
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notNestedPropertyVal = function (obj, prop, val, msg) {
+ new Assertion(obj, msg, assert.notNestedPropertyVal, true)
+ .to.not.have.nested.property(prop, val);
+ };
+
+ /**
+ * ### .deepNestedPropertyVal(object, property, value, [message])
+ *
+ * Asserts that `object` has a property named by `property` with a value given
+ * by `value`. `property` can use dot- and bracket-notation for nested
+ * reference. Uses a deep equality check.
+ *
+ * assert.deepNestedPropertyVal({ tea: { green: { matcha: 'yum' } } }, 'tea.green', { matcha: 'yum' });
+ *
+ * @name deepNestedPropertyVal
+ * @param {Object} object
+ * @param {String} property
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.deepNestedPropertyVal = function (obj, prop, val, msg) {
+ new Assertion(obj, msg, assert.deepNestedPropertyVal, true)
+ .to.have.deep.nested.property(prop, val);
+ };
+
+ /**
+ * ### .notDeepNestedPropertyVal(object, property, value, [message])
+ *
+ * Asserts that `object` does _not_ have a property named by `property` with
+ * value given by `value`. `property` can use dot- and bracket-notation for
+ * nested reference. Uses a deep equality check.
+ *
+ * assert.notDeepNestedPropertyVal({ tea: { green: { matcha: 'yum' } } }, 'tea.green', { oolong: 'yum' });
+ * assert.notDeepNestedPropertyVal({ tea: { green: { matcha: 'yum' } } }, 'tea.green', { matcha: 'yuck' });
+ * assert.notDeepNestedPropertyVal({ tea: { green: { matcha: 'yum' } } }, 'tea.black', { matcha: 'yum' });
+ *
+ * @name notDeepNestedPropertyVal
+ * @param {Object} object
+ * @param {String} property
+ * @param {Mixed} value
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notDeepNestedPropertyVal = function (obj, prop, val, msg) {
+ new Assertion(obj, msg, assert.notDeepNestedPropertyVal, true)
+ .to.not.have.deep.nested.property(prop, val);
+ }
+
+ /**
+ * ### .lengthOf(object, length, [message])
+ *
+ * Asserts that `object` has a `length` or `size` with the expected value.
+ *
+ * assert.lengthOf([1,2,3], 3, 'array has length of 3');
+ * assert.lengthOf('foobar', 6, 'string has length of 6');
+ * assert.lengthOf(new Set([1,2,3]), 3, 'set has size of 3');
+ * assert.lengthOf(new Map([['a',1],['b',2],['c',3]]), 3, 'map has size of 3');
+ *
+ * @name lengthOf
+ * @param {Mixed} object
+ * @param {Number} length
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.lengthOf = function (exp, len, msg) {
+ new Assertion(exp, msg, assert.lengthOf, true).to.have.lengthOf(len);
+ };
+
+ /**
+ * ### .hasAnyKeys(object, [keys], [message])
+ *
+ * Asserts that `object` has at least one of the `keys` provided.
+ * You can also provide a single object instead of a `keys` array and its keys
+ * will be used as the expected set of keys.
+ *
+ * assert.hasAnyKeys({foo: 1, bar: 2, baz: 3}, ['foo', 'iDontExist', 'baz']);
+ * assert.hasAnyKeys({foo: 1, bar: 2, baz: 3}, {foo: 30, iDontExist: 99, baz: 1337});
+ * assert.hasAnyKeys(new Map([[{foo: 1}, 'bar'], ['key', 'value']]), [{foo: 1}, 'key']);
+ * assert.hasAnyKeys(new Set([{foo: 'bar'}, 'anotherKey']), [{foo: 'bar'}, 'anotherKey']);
+ *
+ * @name hasAnyKeys
+ * @param {Mixed} object
+ * @param {Array|Object} keys
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.hasAnyKeys = function (obj, keys, msg) {
+ new Assertion(obj, msg, assert.hasAnyKeys, true).to.have.any.keys(keys);
+ }
+
+ /**
+ * ### .hasAllKeys(object, [keys], [message])
+ *
+ * Asserts that `object` has all and only all of the `keys` provided.
+ * You can also provide a single object instead of a `keys` array and its keys
+ * will be used as the expected set of keys.
+ *
+ * assert.hasAllKeys({foo: 1, bar: 2, baz: 3}, ['foo', 'bar', 'baz']);
+ * assert.hasAllKeys({foo: 1, bar: 2, baz: 3}, {foo: 30, bar: 99, baz: 1337]);
+ * assert.hasAllKeys(new Map([[{foo: 1}, 'bar'], ['key', 'value']]), [{foo: 1}, 'key']);
+ * assert.hasAllKeys(new Set([{foo: 'bar'}, 'anotherKey'], [{foo: 'bar'}, 'anotherKey']);
+ *
+ * @name hasAllKeys
+ * @param {Mixed} object
+ * @param {String[]} keys
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.hasAllKeys = function (obj, keys, msg) {
+ new Assertion(obj, msg, assert.hasAllKeys, true).to.have.all.keys(keys);
+ }
+
+ /**
+ * ### .containsAllKeys(object, [keys], [message])
+ *
+ * Asserts that `object` has all of the `keys` provided but may have more keys not listed.
+ * You can also provide a single object instead of a `keys` array and its keys
+ * will be used as the expected set of keys.
+ *
+ * assert.containsAllKeys({foo: 1, bar: 2, baz: 3}, ['foo', 'baz']);
+ * assert.containsAllKeys({foo: 1, bar: 2, baz: 3}, ['foo', 'bar', 'baz']);
+ * assert.containsAllKeys({foo: 1, bar: 2, baz: 3}, {foo: 30, baz: 1337});
+ * assert.containsAllKeys({foo: 1, bar: 2, baz: 3}, {foo: 30, bar: 99, baz: 1337});
+ * assert.containsAllKeys(new Map([[{foo: 1}, 'bar'], ['key', 'value']]), [{foo: 1}]);
+ * assert.containsAllKeys(new Map([[{foo: 1}, 'bar'], ['key', 'value']]), [{foo: 1}, 'key']);
+ * assert.containsAllKeys(new Set([{foo: 'bar'}, 'anotherKey'], [{foo: 'bar'}]);
+ * assert.containsAllKeys(new Set([{foo: 'bar'}, 'anotherKey'], [{foo: 'bar'}, 'anotherKey']);
+ *
+ * @name containsAllKeys
+ * @param {Mixed} object
+ * @param {String[]} keys
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.containsAllKeys = function (obj, keys, msg) {
+ new Assertion(obj, msg, assert.containsAllKeys, true)
+ .to.contain.all.keys(keys);
+ }
+
+ /**
+ * ### .doesNotHaveAnyKeys(object, [keys], [message])
+ *
+ * Asserts that `object` has none of the `keys` provided.
+ * You can also provide a single object instead of a `keys` array and its keys
+ * will be used as the expected set of keys.
+ *
+ * assert.doesNotHaveAnyKeys({foo: 1, bar: 2, baz: 3}, ['one', 'two', 'example']);
+ * assert.doesNotHaveAnyKeys({foo: 1, bar: 2, baz: 3}, {one: 1, two: 2, example: 'foo'});
+ * assert.doesNotHaveAnyKeys(new Map([[{foo: 1}, 'bar'], ['key', 'value']]), [{one: 'two'}, 'example']);
+ * assert.doesNotHaveAnyKeys(new Set([{foo: 'bar'}, 'anotherKey'], [{one: 'two'}, 'example']);
+ *
+ * @name doesNotHaveAnyKeys
+ * @param {Mixed} object
+ * @param {String[]} keys
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.doesNotHaveAnyKeys = function (obj, keys, msg) {
+ new Assertion(obj, msg, assert.doesNotHaveAnyKeys, true)
+ .to.not.have.any.keys(keys);
+ }
+
+ /**
+ * ### .doesNotHaveAllKeys(object, [keys], [message])
+ *
+ * Asserts that `object` does not have at least one of the `keys` provided.
+ * You can also provide a single object instead of a `keys` array and its keys
+ * will be used as the expected set of keys.
+ *
+ * assert.doesNotHaveAllKeys({foo: 1, bar: 2, baz: 3}, ['one', 'two', 'example']);
+ * assert.doesNotHaveAllKeys({foo: 1, bar: 2, baz: 3}, {one: 1, two: 2, example: 'foo'});
+ * assert.doesNotHaveAllKeys(new Map([[{foo: 1}, 'bar'], ['key', 'value']]), [{one: 'two'}, 'example']);
+ * assert.doesNotHaveAllKeys(new Set([{foo: 'bar'}, 'anotherKey'], [{one: 'two'}, 'example']);
+ *
+ * @name doesNotHaveAllKeys
+ * @param {Mixed} object
+ * @param {String[]} keys
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.doesNotHaveAllKeys = function (obj, keys, msg) {
+ new Assertion(obj, msg, assert.doesNotHaveAllKeys, true)
+ .to.not.have.all.keys(keys);
+ }
+
+ /**
+ * ### .hasAnyDeepKeys(object, [keys], [message])
+ *
+ * Asserts that `object` has at least one of the `keys` provided.
+ * Since Sets and Maps can have objects as keys you can use this assertion to perform
+ * a deep comparison.
+ * You can also provide a single object instead of a `keys` array and its keys
+ * will be used as the expected set of keys.
+ *
+ * assert.hasAnyDeepKeys(new Map([[{one: 'one'}, 'valueOne'], [1, 2]]), {one: 'one'});
+ * assert.hasAnyDeepKeys(new Map([[{one: 'one'}, 'valueOne'], [1, 2]]), [{one: 'one'}, {two: 'two'}]);
+ * assert.hasAnyDeepKeys(new Map([[{one: 'one'}, 'valueOne'], [{two: 'two'}, 'valueTwo']]), [{one: 'one'}, {two: 'two'}]);
+ * assert.hasAnyDeepKeys(new Set([{one: 'one'}, {two: 'two'}]), {one: 'one'});
+ * assert.hasAnyDeepKeys(new Set([{one: 'one'}, {two: 'two'}]), [{one: 'one'}, {three: 'three'}]);
+ * assert.hasAnyDeepKeys(new Set([{one: 'one'}, {two: 'two'}]), [{one: 'one'}, {two: 'two'}]);
+ *
+ * @name doesNotHaveAllKeys
+ * @param {Mixed} object
+ * @param {Array|Object} keys
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.hasAnyDeepKeys = function (obj, keys, msg) {
+ new Assertion(obj, msg, assert.hasAnyDeepKeys, true)
+ .to.have.any.deep.keys(keys);
+ }
+
+ /**
+ * ### .hasAllDeepKeys(object, [keys], [message])
+ *
+ * Asserts that `object` has all and only all of the `keys` provided.
+ * Since Sets and Maps can have objects as keys you can use this assertion to perform
+ * a deep comparison.
+ * You can also provide a single object instead of a `keys` array and its keys
+ * will be used as the expected set of keys.
+ *
+ * assert.hasAllDeepKeys(new Map([[{one: 'one'}, 'valueOne']]), {one: 'one'});
+ * assert.hasAllDeepKeys(new Map([[{one: 'one'}, 'valueOne'], [{two: 'two'}, 'valueTwo']]), [{one: 'one'}, {two: 'two'}]);
+ * assert.hasAllDeepKeys(new Set([{one: 'one'}]), {one: 'one'});
+ * assert.hasAllDeepKeys(new Set([{one: 'one'}, {two: 'two'}]), [{one: 'one'}, {two: 'two'}]);
+ *
+ * @name hasAllDeepKeys
+ * @param {Mixed} object
+ * @param {Array|Object} keys
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.hasAllDeepKeys = function (obj, keys, msg) {
+ new Assertion(obj, msg, assert.hasAllDeepKeys, true)
+ .to.have.all.deep.keys(keys);
+ }
+
+ /**
+ * ### .containsAllDeepKeys(object, [keys], [message])
+ *
+ * Asserts that `object` contains all of the `keys` provided.
+ * Since Sets and Maps can have objects as keys you can use this assertion to perform
+ * a deep comparison.
+ * You can also provide a single object instead of a `keys` array and its keys
+ * will be used as the expected set of keys.
+ *
+ * assert.containsAllDeepKeys(new Map([[{one: 'one'}, 'valueOne'], [1, 2]]), {one: 'one'});
+ * assert.containsAllDeepKeys(new Map([[{one: 'one'}, 'valueOne'], [{two: 'two'}, 'valueTwo']]), [{one: 'one'}, {two: 'two'}]);
+ * assert.containsAllDeepKeys(new Set([{one: 'one'}, {two: 'two'}]), {one: 'one'});
+ * assert.containsAllDeepKeys(new Set([{one: 'one'}, {two: 'two'}]), [{one: 'one'}, {two: 'two'}]);
+ *
+ * @name containsAllDeepKeys
+ * @param {Mixed} object
+ * @param {Array|Object} keys
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.containsAllDeepKeys = function (obj, keys, msg) {
+ new Assertion(obj, msg, assert.containsAllDeepKeys, true)
+ .to.contain.all.deep.keys(keys);
+ }
+
+ /**
+ * ### .doesNotHaveAnyDeepKeys(object, [keys], [message])
+ *
+ * Asserts that `object` has none of the `keys` provided.
+ * Since Sets and Maps can have objects as keys you can use this assertion to perform
+ * a deep comparison.
+ * You can also provide a single object instead of a `keys` array and its keys
+ * will be used as the expected set of keys.
+ *
+ * assert.doesNotHaveAnyDeepKeys(new Map([[{one: 'one'}, 'valueOne'], [1, 2]]), {thisDoesNot: 'exist'});
+ * assert.doesNotHaveAnyDeepKeys(new Map([[{one: 'one'}, 'valueOne'], [{two: 'two'}, 'valueTwo']]), [{twenty: 'twenty'}, {fifty: 'fifty'}]);
+ * assert.doesNotHaveAnyDeepKeys(new Set([{one: 'one'}, {two: 'two'}]), {twenty: 'twenty'});
+ * assert.doesNotHaveAnyDeepKeys(new Set([{one: 'one'}, {two: 'two'}]), [{twenty: 'twenty'}, {fifty: 'fifty'}]);
+ *
+ * @name doesNotHaveAnyDeepKeys
+ * @param {Mixed} object
+ * @param {Array|Object} keys
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.doesNotHaveAnyDeepKeys = function (obj, keys, msg) {
+ new Assertion(obj, msg, assert.doesNotHaveAnyDeepKeys, true)
+ .to.not.have.any.deep.keys(keys);
+ }
+
+ /**
+ * ### .doesNotHaveAllDeepKeys(object, [keys], [message])
+ *
+ * Asserts that `object` does not have at least one of the `keys` provided.
+ * Since Sets and Maps can have objects as keys you can use this assertion to perform
+ * a deep comparison.
+ * You can also provide a single object instead of a `keys` array and its keys
+ * will be used as the expected set of keys.
+ *
+ * assert.doesNotHaveAllDeepKeys(new Map([[{one: 'one'}, 'valueOne'], [1, 2]]), {thisDoesNot: 'exist'});
+ * assert.doesNotHaveAllDeepKeys(new Map([[{one: 'one'}, 'valueOne'], [{two: 'two'}, 'valueTwo']]), [{twenty: 'twenty'}, {one: 'one'}]);
+ * assert.doesNotHaveAllDeepKeys(new Set([{one: 'one'}, {two: 'two'}]), {twenty: 'twenty'});
+ * assert.doesNotHaveAllDeepKeys(new Set([{one: 'one'}, {two: 'two'}]), [{one: 'one'}, {fifty: 'fifty'}]);
+ *
+ * @name doesNotHaveAllDeepKeys
+ * @param {Mixed} object
+ * @param {Array|Object} keys
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.doesNotHaveAllDeepKeys = function (obj, keys, msg) {
+ new Assertion(obj, msg, assert.doesNotHaveAllDeepKeys, true)
+ .to.not.have.all.deep.keys(keys);
+ }
+
+ /**
+ * ### .throws(fn, [errorLike/string/regexp], [string/regexp], [message])
+ *
+ * If `errorLike` is an `Error` constructor, asserts that `fn` will throw an error that is an
+ * instance of `errorLike`.
+ * If `errorLike` is an `Error` instance, asserts that the error thrown is the same
+ * instance as `errorLike`.
+ * If `errMsgMatcher` is provided, it also asserts that the error thrown will have a
+ * message matching `errMsgMatcher`.
+ *
+ * assert.throws(fn, 'Error thrown must have this msg');
+ * assert.throws(fn, /Error thrown must have a msg that matches this/);
+ * assert.throws(fn, ReferenceError);
+ * assert.throws(fn, errorInstance);
+ * assert.throws(fn, ReferenceError, 'Error thrown must be a ReferenceError and have this msg');
+ * assert.throws(fn, errorInstance, 'Error thrown must be the same errorInstance and have this msg');
+ * assert.throws(fn, ReferenceError, /Error thrown must be a ReferenceError and match this/);
+ * assert.throws(fn, errorInstance, /Error thrown must be the same errorInstance and match this/);
+ *
+ * @name throws
+ * @alias throw
+ * @alias Throw
+ * @param {Function} fn
+ * @param {ErrorConstructor|Error} errorLike
+ * @param {RegExp|String} errMsgMatcher
+ * @param {String} message
+ * @see https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Error#Error_types
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.throws = function (fn, errorLike, errMsgMatcher, msg) {
+ if ('string' === typeof errorLike || errorLike instanceof RegExp) {
+ errMsgMatcher = errorLike;
+ errorLike = null;
+ }
+
+ var assertErr = new Assertion(fn, msg, assert.throws, true)
+ .to.throw(errorLike, errMsgMatcher);
+ return flag(assertErr, 'object');
+ };
+
+ /**
+ * ### .doesNotThrow(fn, [errorLike/string/regexp], [string/regexp], [message])
+ *
+ * If `errorLike` is an `Error` constructor, asserts that `fn` will _not_ throw an error that is an
+ * instance of `errorLike`.
+ * If `errorLike` is an `Error` instance, asserts that the error thrown is _not_ the same
+ * instance as `errorLike`.
+ * If `errMsgMatcher` is provided, it also asserts that the error thrown will _not_ have a
+ * message matching `errMsgMatcher`.
+ *
+ * assert.doesNotThrow(fn, 'Any Error thrown must not have this message');
+ * assert.doesNotThrow(fn, /Any Error thrown must not match this/);
+ * assert.doesNotThrow(fn, Error);
+ * assert.doesNotThrow(fn, errorInstance);
+ * assert.doesNotThrow(fn, Error, 'Error must not have this message');
+ * assert.doesNotThrow(fn, errorInstance, 'Error must not have this message');
+ * assert.doesNotThrow(fn, Error, /Error must not match this/);
+ * assert.doesNotThrow(fn, errorInstance, /Error must not match this/);
+ *
+ * @name doesNotThrow
+ * @param {Function} fn
+ * @param {ErrorConstructor} errorLike
+ * @param {RegExp|String} errMsgMatcher
+ * @param {String} message
+ * @see https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Error#Error_types
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.doesNotThrow = function (fn, errorLike, errMsgMatcher, msg) {
+ if ('string' === typeof errorLike || errorLike instanceof RegExp) {
+ errMsgMatcher = errorLike;
+ errorLike = null;
+ }
+
+ new Assertion(fn, msg, assert.doesNotThrow, true)
+ .to.not.throw(errorLike, errMsgMatcher);
+ };
+
+ /**
+ * ### .operator(val1, operator, val2, [message])
+ *
+ * Compares two values using `operator`.
+ *
+ * assert.operator(1, '<', 2, 'everything is ok');
+ * assert.operator(1, '>', 2, 'this will fail');
+ *
+ * @name operator
+ * @param {Mixed} val1
+ * @param {String} operator
+ * @param {Mixed} val2
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.operator = function (val, operator, val2, msg) {
+ var ok;
+ switch(operator) {
+ case '==':
+ ok = val == val2;
+ break;
+ case '===':
+ ok = val === val2;
+ break;
+ case '>':
+ ok = val > val2;
+ break;
+ case '>=':
+ ok = val >= val2;
+ break;
+ case '<':
+ ok = val < val2;
+ break;
+ case '<=':
+ ok = val <= val2;
+ break;
+ case '!=':
+ ok = val != val2;
+ break;
+ case '!==':
+ ok = val !== val2;
+ break;
+ default:
+ msg = msg ? msg + ': ' : msg;
+ throw new chai.AssertionError(
+ msg + 'Invalid operator "' + operator + '"',
+ undefined,
+ assert.operator
+ );
+ }
+ var test = new Assertion(ok, msg, assert.operator, true);
+ test.assert(
+ true === flag(test, 'object')
+ , 'expected ' + util.inspect(val) + ' to be ' + operator + ' ' + util.inspect(val2)
+ , 'expected ' + util.inspect(val) + ' to not be ' + operator + ' ' + util.inspect(val2) );
+ };
+
+ /**
+ * ### .closeTo(actual, expected, delta, [message])
+ *
+ * Asserts that the target is equal `expected`, to within a +/- `delta` range.
+ *
+ * assert.closeTo(1.5, 1, 0.5, 'numbers are close');
+ *
+ * @name closeTo
+ * @param {Number} actual
+ * @param {Number} expected
+ * @param {Number} delta
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.closeTo = function (act, exp, delta, msg) {
+ new Assertion(act, msg, assert.closeTo, true).to.be.closeTo(exp, delta);
+ };
+
+ /**
+ * ### .approximately(actual, expected, delta, [message])
+ *
+ * Asserts that the target is equal `expected`, to within a +/- `delta` range.
+ *
+ * assert.approximately(1.5, 1, 0.5, 'numbers are close');
+ *
+ * @name approximately
+ * @param {Number} actual
+ * @param {Number} expected
+ * @param {Number} delta
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.approximately = function (act, exp, delta, msg) {
+ new Assertion(act, msg, assert.approximately, true)
+ .to.be.approximately(exp, delta);
+ };
+
+ /**
+ * ### .sameMembers(set1, set2, [message])
+ *
+ * Asserts that `set1` and `set2` have the same members in any order. Uses a
+ * strict equality check (===).
+ *
+ * assert.sameMembers([ 1, 2, 3 ], [ 2, 1, 3 ], 'same members');
+ *
+ * @name sameMembers
+ * @param {Array} set1
+ * @param {Array} set2
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.sameMembers = function (set1, set2, msg) {
+ new Assertion(set1, msg, assert.sameMembers, true)
+ .to.have.same.members(set2);
+ }
+
+ /**
+ * ### .notSameMembers(set1, set2, [message])
+ *
+ * Asserts that `set1` and `set2` don't have the same members in any order.
+ * Uses a strict equality check (===).
+ *
+ * assert.notSameMembers([ 1, 2, 3 ], [ 5, 1, 3 ], 'not same members');
+ *
+ * @name notSameMembers
+ * @param {Array} set1
+ * @param {Array} set2
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notSameMembers = function (set1, set2, msg) {
+ new Assertion(set1, msg, assert.notSameMembers, true)
+ .to.not.have.same.members(set2);
+ }
+
+ /**
+ * ### .sameDeepMembers(set1, set2, [message])
+ *
+ * Asserts that `set1` and `set2` have the same members in any order. Uses a
+ * deep equality check.
+ *
+ * assert.sameDeepMembers([ { a: 1 }, { b: 2 }, { c: 3 } ], [{ b: 2 }, { a: 1 }, { c: 3 }], 'same deep members');
+ *
+ * @name sameDeepMembers
+ * @param {Array} set1
+ * @param {Array} set2
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.sameDeepMembers = function (set1, set2, msg) {
+ new Assertion(set1, msg, assert.sameDeepMembers, true)
+ .to.have.same.deep.members(set2);
+ }
+
+ /**
+ * ### .notSameDeepMembers(set1, set2, [message])
+ *
+ * Asserts that `set1` and `set2` don't have the same members in any order.
+ * Uses a deep equality check.
+ *
+ * assert.notSameDeepMembers([ { a: 1 }, { b: 2 }, { c: 3 } ], [{ b: 2 }, { a: 1 }, { f: 5 }], 'not same deep members');
+ *
+ * @name notSameDeepMembers
+ * @param {Array} set1
+ * @param {Array} set2
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notSameDeepMembers = function (set1, set2, msg) {
+ new Assertion(set1, msg, assert.notSameDeepMembers, true)
+ .to.not.have.same.deep.members(set2);
+ }
+
+ /**
+ * ### .sameOrderedMembers(set1, set2, [message])
+ *
+ * Asserts that `set1` and `set2` have the same members in the same order.
+ * Uses a strict equality check (===).
+ *
+ * assert.sameOrderedMembers([ 1, 2, 3 ], [ 1, 2, 3 ], 'same ordered members');
+ *
+ * @name sameOrderedMembers
+ * @param {Array} set1
+ * @param {Array} set2
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.sameOrderedMembers = function (set1, set2, msg) {
+ new Assertion(set1, msg, assert.sameOrderedMembers, true)
+ .to.have.same.ordered.members(set2);
+ }
+
+ /**
+ * ### .notSameOrderedMembers(set1, set2, [message])
+ *
+ * Asserts that `set1` and `set2` don't have the same members in the same
+ * order. Uses a strict equality check (===).
+ *
+ * assert.notSameOrderedMembers([ 1, 2, 3 ], [ 2, 1, 3 ], 'not same ordered members');
+ *
+ * @name notSameOrderedMembers
+ * @param {Array} set1
+ * @param {Array} set2
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notSameOrderedMembers = function (set1, set2, msg) {
+ new Assertion(set1, msg, assert.notSameOrderedMembers, true)
+ .to.not.have.same.ordered.members(set2);
+ }
+
+ /**
+ * ### .sameDeepOrderedMembers(set1, set2, [message])
+ *
+ * Asserts that `set1` and `set2` have the same members in the same order.
+ * Uses a deep equality check.
+ *
+ * assert.sameDeepOrderedMembers([ { a: 1 }, { b: 2 }, { c: 3 } ], [ { a: 1 }, { b: 2 }, { c: 3 } ], 'same deep ordered members');
+ *
+ * @name sameDeepOrderedMembers
+ * @param {Array} set1
+ * @param {Array} set2
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.sameDeepOrderedMembers = function (set1, set2, msg) {
+ new Assertion(set1, msg, assert.sameDeepOrderedMembers, true)
+ .to.have.same.deep.ordered.members(set2);
+ }
+
+ /**
+ * ### .notSameDeepOrderedMembers(set1, set2, [message])
+ *
+ * Asserts that `set1` and `set2` don't have the same members in the same
+ * order. Uses a deep equality check.
+ *
+ * assert.notSameDeepOrderedMembers([ { a: 1 }, { b: 2 }, { c: 3 } ], [ { a: 1 }, { b: 2 }, { z: 5 } ], 'not same deep ordered members');
+ * assert.notSameDeepOrderedMembers([ { a: 1 }, { b: 2 }, { c: 3 } ], [ { b: 2 }, { a: 1 }, { c: 3 } ], 'not same deep ordered members');
+ *
+ * @name notSameDeepOrderedMembers
+ * @param {Array} set1
+ * @param {Array} set2
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notSameDeepOrderedMembers = function (set1, set2, msg) {
+ new Assertion(set1, msg, assert.notSameDeepOrderedMembers, true)
+ .to.not.have.same.deep.ordered.members(set2);
+ }
+
+ /**
+ * ### .includeMembers(superset, subset, [message])
+ *
+ * Asserts that `subset` is included in `superset` in any order. Uses a
+ * strict equality check (===). Duplicates are ignored.
+ *
+ * assert.includeMembers([ 1, 2, 3 ], [ 2, 1, 2 ], 'include members');
+ *
+ * @name includeMembers
+ * @param {Array} superset
+ * @param {Array} subset
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.includeMembers = function (superset, subset, msg) {
+ new Assertion(superset, msg, assert.includeMembers, true)
+ .to.include.members(subset);
+ }
+
+ /**
+ * ### .notIncludeMembers(superset, subset, [message])
+ *
+ * Asserts that `subset` isn't included in `superset` in any order. Uses a
+ * strict equality check (===). Duplicates are ignored.
+ *
+ * assert.notIncludeMembers([ 1, 2, 3 ], [ 5, 1 ], 'not include members');
+ *
+ * @name notIncludeMembers
+ * @param {Array} superset
+ * @param {Array} subset
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notIncludeMembers = function (superset, subset, msg) {
+ new Assertion(superset, msg, assert.notIncludeMembers, true)
+ .to.not.include.members(subset);
+ }
+
+ /**
+ * ### .includeDeepMembers(superset, subset, [message])
+ *
+ * Asserts that `subset` is included in `superset` in any order. Uses a deep
+ * equality check. Duplicates are ignored.
+ *
+ * assert.includeDeepMembers([ { a: 1 }, { b: 2 }, { c: 3 } ], [ { b: 2 }, { a: 1 }, { b: 2 } ], 'include deep members');
+ *
+ * @name includeDeepMembers
+ * @param {Array} superset
+ * @param {Array} subset
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.includeDeepMembers = function (superset, subset, msg) {
+ new Assertion(superset, msg, assert.includeDeepMembers, true)
+ .to.include.deep.members(subset);
+ }
+
+ /**
+ * ### .notIncludeDeepMembers(superset, subset, [message])
+ *
+ * Asserts that `subset` isn't included in `superset` in any order. Uses a
+ * deep equality check. Duplicates are ignored.
+ *
+ * assert.notIncludeDeepMembers([ { a: 1 }, { b: 2 }, { c: 3 } ], [ { b: 2 }, { f: 5 } ], 'not include deep members');
+ *
+ * @name notIncludeDeepMembers
+ * @param {Array} superset
+ * @param {Array} subset
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notIncludeDeepMembers = function (superset, subset, msg) {
+ new Assertion(superset, msg, assert.notIncludeDeepMembers, true)
+ .to.not.include.deep.members(subset);
+ }
+
+ /**
+ * ### .includeOrderedMembers(superset, subset, [message])
+ *
+ * Asserts that `subset` is included in `superset` in the same order
+ * beginning with the first element in `superset`. Uses a strict equality
+ * check (===).
+ *
+ * assert.includeOrderedMembers([ 1, 2, 3 ], [ 1, 2 ], 'include ordered members');
+ *
+ * @name includeOrderedMembers
+ * @param {Array} superset
+ * @param {Array} subset
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.includeOrderedMembers = function (superset, subset, msg) {
+ new Assertion(superset, msg, assert.includeOrderedMembers, true)
+ .to.include.ordered.members(subset);
+ }
+
+ /**
+ * ### .notIncludeOrderedMembers(superset, subset, [message])
+ *
+ * Asserts that `subset` isn't included in `superset` in the same order
+ * beginning with the first element in `superset`. Uses a strict equality
+ * check (===).
+ *
+ * assert.notIncludeOrderedMembers([ 1, 2, 3 ], [ 2, 1 ], 'not include ordered members');
+ * assert.notIncludeOrderedMembers([ 1, 2, 3 ], [ 2, 3 ], 'not include ordered members');
+ *
+ * @name notIncludeOrderedMembers
+ * @param {Array} superset
+ * @param {Array} subset
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notIncludeOrderedMembers = function (superset, subset, msg) {
+ new Assertion(superset, msg, assert.notIncludeOrderedMembers, true)
+ .to.not.include.ordered.members(subset);
+ }
+
+ /**
+ * ### .includeDeepOrderedMembers(superset, subset, [message])
+ *
+ * Asserts that `subset` is included in `superset` in the same order
+ * beginning with the first element in `superset`. Uses a deep equality
+ * check.
+ *
+ * assert.includeDeepOrderedMembers([ { a: 1 }, { b: 2 }, { c: 3 } ], [ { a: 1 }, { b: 2 } ], 'include deep ordered members');
+ *
+ * @name includeDeepOrderedMembers
+ * @param {Array} superset
+ * @param {Array} subset
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.includeDeepOrderedMembers = function (superset, subset, msg) {
+ new Assertion(superset, msg, assert.includeDeepOrderedMembers, true)
+ .to.include.deep.ordered.members(subset);
+ }
+
+ /**
+ * ### .notIncludeDeepOrderedMembers(superset, subset, [message])
+ *
+ * Asserts that `subset` isn't included in `superset` in the same order
+ * beginning with the first element in `superset`. Uses a deep equality
+ * check.
+ *
+ * assert.notIncludeDeepOrderedMembers([ { a: 1 }, { b: 2 }, { c: 3 } ], [ { a: 1 }, { f: 5 } ], 'not include deep ordered members');
+ * assert.notIncludeDeepOrderedMembers([ { a: 1 }, { b: 2 }, { c: 3 } ], [ { b: 2 }, { a: 1 } ], 'not include deep ordered members');
+ * assert.notIncludeDeepOrderedMembers([ { a: 1 }, { b: 2 }, { c: 3 } ], [ { b: 2 }, { c: 3 } ], 'not include deep ordered members');
+ *
+ * @name notIncludeDeepOrderedMembers
+ * @param {Array} superset
+ * @param {Array} subset
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.notIncludeDeepOrderedMembers = function (superset, subset, msg) {
+ new Assertion(superset, msg, assert.notIncludeDeepOrderedMembers, true)
+ .to.not.include.deep.ordered.members(subset);
+ }
+
+ /**
+ * ### .oneOf(inList, list, [message])
+ *
+ * Asserts that non-object, non-array value `inList` appears in the flat array `list`.
+ *
+ * assert.oneOf(1, [ 2, 1 ], 'Not found in list');
+ *
+ * @name oneOf
+ * @param {*} inList
+ * @param {Array<*>} list
+ * @param {String} message
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.oneOf = function (inList, list, msg) {
+ new Assertion(inList, msg, assert.oneOf, true).to.be.oneOf(list);
+ }
+
+ /**
+ * ### .changes(function, object, property, [message])
+ *
+ * Asserts that a function changes the value of a property.
+ *
+ * var obj = { val: 10 };
+ * var fn = function() { obj.val = 22 };
+ * assert.changes(fn, obj, 'val');
+ *
+ * @name changes
+ * @param {Function} modifier function
+ * @param {Object} object or getter function
+ * @param {String} property name _optional_
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.changes = function (fn, obj, prop, msg) {
+ if (arguments.length === 3 && typeof obj === 'function') {
+ msg = prop;
+ prop = null;
+ }
+
+ new Assertion(fn, msg, assert.changes, true).to.change(obj, prop);
+ }
+
+ /**
+ * ### .changesBy(function, object, property, delta, [message])
+ *
+ * Asserts that a function changes the value of a property by an amount (delta).
+ *
+ * var obj = { val: 10 };
+ * var fn = function() { obj.val += 2 };
+ * assert.changesBy(fn, obj, 'val', 2);
+ *
+ * @name changesBy
+ * @param {Function} modifier function
+ * @param {Object} object or getter function
+ * @param {String} property name _optional_
+ * @param {Number} change amount (delta)
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.changesBy = function (fn, obj, prop, delta, msg) {
+ if (arguments.length === 4 && typeof obj === 'function') {
+ var tmpMsg = delta;
+ delta = prop;
+ msg = tmpMsg;
+ } else if (arguments.length === 3) {
+ delta = prop;
+ prop = null;
+ }
+
+ new Assertion(fn, msg, assert.changesBy, true)
+ .to.change(obj, prop).by(delta);
+ }
+
+ /**
+ * ### .doesNotChange(function, object, property, [message])
+ *
+ * Asserts that a function does not change the value of a property.
+ *
+ * var obj = { val: 10 };
+ * var fn = function() { console.log('foo'); };
+ * assert.doesNotChange(fn, obj, 'val');
+ *
+ * @name doesNotChange
+ * @param {Function} modifier function
+ * @param {Object} object or getter function
+ * @param {String} property name _optional_
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.doesNotChange = function (fn, obj, prop, msg) {
+ if (arguments.length === 3 && typeof obj === 'function') {
+ msg = prop;
+ prop = null;
+ }
+
+ return new Assertion(fn, msg, assert.doesNotChange, true)
+ .to.not.change(obj, prop);
+ }
+
+ /**
+ * ### .changesButNotBy(function, object, property, delta, [message])
+ *
+ * Asserts that a function does not change the value of a property or of a function's return value by an amount (delta)
+ *
+ * var obj = { val: 10 };
+ * var fn = function() { obj.val += 10 };
+ * assert.changesButNotBy(fn, obj, 'val', 5);
+ *
+ * @name changesButNotBy
+ * @param {Function} modifier function
+ * @param {Object} object or getter function
+ * @param {String} property name _optional_
+ * @param {Number} change amount (delta)
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.changesButNotBy = function (fn, obj, prop, delta, msg) {
+ if (arguments.length === 4 && typeof obj === 'function') {
+ var tmpMsg = delta;
+ delta = prop;
+ msg = tmpMsg;
+ } else if (arguments.length === 3) {
+ delta = prop;
+ prop = null;
+ }
+
+ new Assertion(fn, msg, assert.changesButNotBy, true)
+ .to.change(obj, prop).but.not.by(delta);
+ }
+
+ /**
+ * ### .increases(function, object, property, [message])
+ *
+ * Asserts that a function increases a numeric object property.
+ *
+ * var obj = { val: 10 };
+ * var fn = function() { obj.val = 13 };
+ * assert.increases(fn, obj, 'val');
+ *
+ * @name increases
+ * @param {Function} modifier function
+ * @param {Object} object or getter function
+ * @param {String} property name _optional_
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.increases = function (fn, obj, prop, msg) {
+ if (arguments.length === 3 && typeof obj === 'function') {
+ msg = prop;
+ prop = null;
+ }
+
+ return new Assertion(fn, msg, assert.increases, true)
+ .to.increase(obj, prop);
+ }
+
+ /**
+ * ### .increasesBy(function, object, property, delta, [message])
+ *
+ * Asserts that a function increases a numeric object property or a function's return value by an amount (delta).
+ *
+ * var obj = { val: 10 };
+ * var fn = function() { obj.val += 10 };
+ * assert.increasesBy(fn, obj, 'val', 10);
+ *
+ * @name increasesBy
+ * @param {Function} modifier function
+ * @param {Object} object or getter function
+ * @param {String} property name _optional_
+ * @param {Number} change amount (delta)
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.increasesBy = function (fn, obj, prop, delta, msg) {
+ if (arguments.length === 4 && typeof obj === 'function') {
+ var tmpMsg = delta;
+ delta = prop;
+ msg = tmpMsg;
+ } else if (arguments.length === 3) {
+ delta = prop;
+ prop = null;
+ }
+
+ new Assertion(fn, msg, assert.increasesBy, true)
+ .to.increase(obj, prop).by(delta);
+ }
+
+ /**
+ * ### .doesNotIncrease(function, object, property, [message])
+ *
+ * Asserts that a function does not increase a numeric object property.
+ *
+ * var obj = { val: 10 };
+ * var fn = function() { obj.val = 8 };
+ * assert.doesNotIncrease(fn, obj, 'val');
+ *
+ * @name doesNotIncrease
+ * @param {Function} modifier function
+ * @param {Object} object or getter function
+ * @param {String} property name _optional_
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.doesNotIncrease = function (fn, obj, prop, msg) {
+ if (arguments.length === 3 && typeof obj === 'function') {
+ msg = prop;
+ prop = null;
+ }
+
+ return new Assertion(fn, msg, assert.doesNotIncrease, true)
+ .to.not.increase(obj, prop);
+ }
+
+ /**
+ * ### .increasesButNotBy(function, object, property, [message])
+ *
+ * Asserts that a function does not increase a numeric object property or function's return value by an amount (delta).
+ *
+ * var obj = { val: 10 };
+ * var fn = function() { obj.val = 15 };
+ * assert.increasesButNotBy(fn, obj, 'val', 10);
+ *
+ * @name increasesButNotBy
+ * @param {Function} modifier function
+ * @param {Object} object or getter function
+ * @param {String} property name _optional_
+ * @param {Number} change amount (delta)
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.increasesButNotBy = function (fn, obj, prop, delta, msg) {
+ if (arguments.length === 4 && typeof obj === 'function') {
+ var tmpMsg = delta;
+ delta = prop;
+ msg = tmpMsg;
+ } else if (arguments.length === 3) {
+ delta = prop;
+ prop = null;
+ }
+
+ new Assertion(fn, msg, assert.increasesButNotBy, true)
+ .to.increase(obj, prop).but.not.by(delta);
+ }
+
+ /**
+ * ### .decreases(function, object, property, [message])
+ *
+ * Asserts that a function decreases a numeric object property.
+ *
+ * var obj = { val: 10 };
+ * var fn = function() { obj.val = 5 };
+ * assert.decreases(fn, obj, 'val');
+ *
+ * @name decreases
+ * @param {Function} modifier function
+ * @param {Object} object or getter function
+ * @param {String} property name _optional_
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.decreases = function (fn, obj, prop, msg) {
+ if (arguments.length === 3 && typeof obj === 'function') {
+ msg = prop;
+ prop = null;
+ }
+
+ return new Assertion(fn, msg, assert.decreases, true)
+ .to.decrease(obj, prop);
+ }
+
+ /**
+ * ### .decreasesBy(function, object, property, delta, [message])
+ *
+ * Asserts that a function decreases a numeric object property or a function's return value by an amount (delta)
+ *
+ * var obj = { val: 10 };
+ * var fn = function() { obj.val -= 5 };
+ * assert.decreasesBy(fn, obj, 'val', 5);
+ *
+ * @name decreasesBy
+ * @param {Function} modifier function
+ * @param {Object} object or getter function
+ * @param {String} property name _optional_
+ * @param {Number} change amount (delta)
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.decreasesBy = function (fn, obj, prop, delta, msg) {
+ if (arguments.length === 4 && typeof obj === 'function') {
+ var tmpMsg = delta;
+ delta = prop;
+ msg = tmpMsg;
+ } else if (arguments.length === 3) {
+ delta = prop;
+ prop = null;
+ }
+
+ new Assertion(fn, msg, assert.decreasesBy, true)
+ .to.decrease(obj, prop).by(delta);
+ }
+
+ /**
+ * ### .doesNotDecrease(function, object, property, [message])
+ *
+ * Asserts that a function does not decreases a numeric object property.
+ *
+ * var obj = { val: 10 };
+ * var fn = function() { obj.val = 15 };
+ * assert.doesNotDecrease(fn, obj, 'val');
+ *
+ * @name doesNotDecrease
+ * @param {Function} modifier function
+ * @param {Object} object or getter function
+ * @param {String} property name _optional_
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.doesNotDecrease = function (fn, obj, prop, msg) {
+ if (arguments.length === 3 && typeof obj === 'function') {
+ msg = prop;
+ prop = null;
+ }
+
+ return new Assertion(fn, msg, assert.doesNotDecrease, true)
+ .to.not.decrease(obj, prop);
+ }
+
+ /**
+ * ### .doesNotDecreaseBy(function, object, property, delta, [message])
+ *
+ * Asserts that a function does not decreases a numeric object property or a function's return value by an amount (delta)
+ *
+ * var obj = { val: 10 };
+ * var fn = function() { obj.val = 5 };
+ * assert.doesNotDecreaseBy(fn, obj, 'val', 1);
+ *
+ * @name doesNotDecrease
+ * @param {Function} modifier function
+ * @param {Object} object or getter function
+ * @param {String} property name _optional_
+ * @param {Number} change amount (delta)
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.doesNotDecreaseBy = function (fn, obj, prop, delta, msg) {
+ if (arguments.length === 4 && typeof obj === 'function') {
+ var tmpMsg = delta;
+ delta = prop;
+ msg = tmpMsg;
+ } else if (arguments.length === 3) {
+ delta = prop;
+ prop = null;
+ }
+
+ return new Assertion(fn, msg, assert.doesNotDecreaseBy, true)
+ .to.not.decrease(obj, prop).by(delta);
+ }
+
+ /**
+ * ### .decreasesButNotBy(function, object, property, delta, [message])
+ *
+ * Asserts that a function does not decreases a numeric object property or a function's return value by an amount (delta)
+ *
+ * var obj = { val: 10 };
+ * var fn = function() { obj.val = 5 };
+ * assert.decreasesButNotBy(fn, obj, 'val', 1);
+ *
+ * @name decreasesButNotBy
+ * @param {Function} modifier function
+ * @param {Object} object or getter function
+ * @param {String} property name _optional_
+ * @param {Number} change amount (delta)
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.decreasesButNotBy = function (fn, obj, prop, delta, msg) {
+ if (arguments.length === 4 && typeof obj === 'function') {
+ var tmpMsg = delta;
+ delta = prop;
+ msg = tmpMsg;
+ } else if (arguments.length === 3) {
+ delta = prop;
+ prop = null;
+ }
+
+ new Assertion(fn, msg, assert.decreasesButNotBy, true)
+ .to.decrease(obj, prop).but.not.by(delta);
+ }
+
+ /*!
+ * ### .ifError(object)
+ *
+ * Asserts if value is not a false value, and throws if it is a true value.
+ * This is added to allow for chai to be a drop-in replacement for Node's
+ * assert class.
+ *
+ * var err = new Error('I am a custom error');
+ * assert.ifError(err); // Rethrows err!
+ *
+ * @name ifError
+ * @param {Object} object
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.ifError = function (val) {
+ if (val) {
+ throw(val);
+ }
+ };
+
+ /**
+ * ### .isExtensible(object)
+ *
+ * Asserts that `object` is extensible (can have new properties added to it).
+ *
+ * assert.isExtensible({});
+ *
+ * @name isExtensible
+ * @alias extensible
+ * @param {Object} object
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isExtensible = function (obj, msg) {
+ new Assertion(obj, msg, assert.isExtensible, true).to.be.extensible;
+ };
+
+ /**
+ * ### .isNotExtensible(object)
+ *
+ * Asserts that `object` is _not_ extensible.
+ *
+ * var nonExtensibleObject = Object.preventExtensions({});
+ * var sealedObject = Object.seal({});
+ * var frozenObject = Object.freeze({});
+ *
+ * assert.isNotExtensible(nonExtensibleObject);
+ * assert.isNotExtensible(sealedObject);
+ * assert.isNotExtensible(frozenObject);
+ *
+ * @name isNotExtensible
+ * @alias notExtensible
+ * @param {Object} object
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isNotExtensible = function (obj, msg) {
+ new Assertion(obj, msg, assert.isNotExtensible, true).to.not.be.extensible;
+ };
+
+ /**
+ * ### .isSealed(object)
+ *
+ * Asserts that `object` is sealed (cannot have new properties added to it
+ * and its existing properties cannot be removed).
+ *
+ * var sealedObject = Object.seal({});
+ * var frozenObject = Object.seal({});
+ *
+ * assert.isSealed(sealedObject);
+ * assert.isSealed(frozenObject);
+ *
+ * @name isSealed
+ * @alias sealed
+ * @param {Object} object
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isSealed = function (obj, msg) {
+ new Assertion(obj, msg, assert.isSealed, true).to.be.sealed;
+ };
+
+ /**
+ * ### .isNotSealed(object)
+ *
+ * Asserts that `object` is _not_ sealed.
+ *
+ * assert.isNotSealed({});
+ *
+ * @name isNotSealed
+ * @alias notSealed
+ * @param {Object} object
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isNotSealed = function (obj, msg) {
+ new Assertion(obj, msg, assert.isNotSealed, true).to.not.be.sealed;
+ };
+
+ /**
+ * ### .isFrozen(object)
+ *
+ * Asserts that `object` is frozen (cannot have new properties added to it
+ * and its existing properties cannot be modified).
+ *
+ * var frozenObject = Object.freeze({});
+ * assert.frozen(frozenObject);
+ *
+ * @name isFrozen
+ * @alias frozen
+ * @param {Object} object
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isFrozen = function (obj, msg) {
+ new Assertion(obj, msg, assert.isFrozen, true).to.be.frozen;
+ };
+
+ /**
+ * ### .isNotFrozen(object)
+ *
+ * Asserts that `object` is _not_ frozen.
+ *
+ * assert.isNotFrozen({});
+ *
+ * @name isNotFrozen
+ * @alias notFrozen
+ * @param {Object} object
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isNotFrozen = function (obj, msg) {
+ new Assertion(obj, msg, assert.isNotFrozen, true).to.not.be.frozen;
+ };
+
+ /**
+ * ### .isEmpty(target)
+ *
+ * Asserts that the target does not contain any values.
+ * For arrays and strings, it checks the `length` property.
+ * For `Map` and `Set` instances, it checks the `size` property.
+ * For non-function objects, it gets the count of own
+ * enumerable string keys.
+ *
+ * assert.isEmpty([]);
+ * assert.isEmpty('');
+ * assert.isEmpty(new Map);
+ * assert.isEmpty({});
+ *
+ * @name isEmpty
+ * @alias empty
+ * @param {Object|Array|String|Map|Set} target
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isEmpty = function(val, msg) {
+ new Assertion(val, msg, assert.isEmpty, true).to.be.empty;
+ };
+
+ /**
+ * ### .isNotEmpty(target)
+ *
+ * Asserts that the target contains values.
+ * For arrays and strings, it checks the `length` property.
+ * For `Map` and `Set` instances, it checks the `size` property.
+ * For non-function objects, it gets the count of own
+ * enumerable string keys.
+ *
+ * assert.isNotEmpty([1, 2]);
+ * assert.isNotEmpty('34');
+ * assert.isNotEmpty(new Set([5, 6]));
+ * assert.isNotEmpty({ key: 7 });
+ *
+ * @name isNotEmpty
+ * @alias notEmpty
+ * @param {Object|Array|String|Map|Set} target
+ * @param {String} message _optional_
+ * @namespace Assert
+ * @api public
+ */
+
+ assert.isNotEmpty = function(val, msg) {
+ new Assertion(val, msg, assert.isNotEmpty, true).to.not.be.empty;
+ };
+
+ /*!
+ * Aliases.
+ */
+
+ (function alias(name, as){
+ assert[as] = assert[name];
+ return alias;
+ })
+ ('isOk', 'ok')
+ ('isNotOk', 'notOk')
+ ('throws', 'throw')
+ ('throws', 'Throw')
+ ('isExtensible', 'extensible')
+ ('isNotExtensible', 'notExtensible')
+ ('isSealed', 'sealed')
+ ('isNotSealed', 'notSealed')
+ ('isFrozen', 'frozen')
+ ('isNotFrozen', 'notFrozen')
+ ('isEmpty', 'empty')
+ ('isNotEmpty', 'notEmpty');
+};
+
+},{}],7:[function(require,module,exports){
+/*!
+ * chai
+ * Copyright(c) 2011-2014 Jake Luer
+ * MIT Licensed
+ */
+
+module.exports = function (chai, util) {
+ chai.expect = function (val, message) {
+ return new chai.Assertion(val, message);
+ };
+
+ /**
+ * ### .fail([message])
+ * ### .fail(actual, expected, [message], [operator])
+ *
+ * Throw a failure.
+ *
+ * expect.fail();
+ * expect.fail("custom error message");
+ * expect.fail(1, 2);
+ * expect.fail(1, 2, "custom error message");
+ * expect.fail(1, 2, "custom error message", ">");
+ * expect.fail(1, 2, undefined, ">");
+ *
+ * @name fail
+ * @param {Mixed} actual
+ * @param {Mixed} expected
+ * @param {String} message
+ * @param {String} operator
+ * @namespace BDD
+ * @api public
+ */
+
+ chai.expect.fail = function (actual, expected, message, operator) {
+ if (arguments.length < 2) {
+ message = actual;
+ actual = undefined;
+ }
+
+ message = message || 'expect.fail()';
+ throw new chai.AssertionError(message, {
+ actual: actual
+ , expected: expected
+ , operator: operator
+ }, chai.expect.fail);
+ };
+};
+
+},{}],8:[function(require,module,exports){
+/*!
+ * chai
+ * Copyright(c) 2011-2014 Jake Luer
+ * MIT Licensed
+ */
+
+module.exports = function (chai, util) {
+ var Assertion = chai.Assertion;
+
+ function loadShould () {
+ // explicitly define this method as function as to have it's name to include as `ssfi`
+ function shouldGetter() {
+ if (this instanceof String
+ || this instanceof Number
+ || this instanceof Boolean
+ || typeof Symbol === 'function' && this instanceof Symbol) {
+ return new Assertion(this.valueOf(), null, shouldGetter);
+ }
+ return new Assertion(this, null, shouldGetter);
+ }
+ function shouldSetter(value) {
+ // See https://github.com/chaijs/chai/issues/86: this makes
+ // `whatever.should = someValue` actually set `someValue`, which is
+ // especially useful for `global.should = require('chai').should()`.
+ //
+ // Note that we have to use [[DefineProperty]] instead of [[Put]]
+ // since otherwise we would trigger this very setter!
+ Object.defineProperty(this, 'should', {
+ value: value,
+ enumerable: true,
+ configurable: true,
+ writable: true
+ });
+ }
+ // modify Object.prototype to have `should`
+ Object.defineProperty(Object.prototype, 'should', {
+ set: shouldSetter
+ , get: shouldGetter
+ , configurable: true
+ });
+
+ var should = {};
+
+ /**
+ * ### .fail([message])
+ * ### .fail(actual, expected, [message], [operator])
+ *
+ * Throw a failure.
+ *
+ * should.fail();
+ * should.fail("custom error message");
+ * should.fail(1, 2);
+ * should.fail(1, 2, "custom error message");
+ * should.fail(1, 2, "custom error message", ">");
+ * should.fail(1, 2, undefined, ">");
+ *
+ *
+ * @name fail
+ * @param {Mixed} actual
+ * @param {Mixed} expected
+ * @param {String} message
+ * @param {String} operator
+ * @namespace BDD
+ * @api public
+ */
+
+ should.fail = function (actual, expected, message, operator) {
+ if (arguments.length < 2) {
+ message = actual;
+ actual = undefined;
+ }
+
+ message = message || 'should.fail()';
+ throw new chai.AssertionError(message, {
+ actual: actual
+ , expected: expected
+ , operator: operator
+ }, should.fail);
+ };
+
+ /**
+ * ### .equal(actual, expected, [message])
+ *
+ * Asserts non-strict equality (`==`) of `actual` and `expected`.
+ *
+ * should.equal(3, '3', '== coerces values to strings');
+ *
+ * @name equal
+ * @param {Mixed} actual
+ * @param {Mixed} expected
+ * @param {String} message
+ * @namespace Should
+ * @api public
+ */
+
+ should.equal = function (val1, val2, msg) {
+ new Assertion(val1, msg).to.equal(val2);
+ };
+
+ /**
+ * ### .throw(function, [constructor/string/regexp], [string/regexp], [message])
+ *
+ * Asserts that `function` will throw an error that is an instance of
+ * `constructor`, or alternately that it will throw an error with message
+ * matching `regexp`.
+ *
+ * should.throw(fn, 'function throws a reference error');
+ * should.throw(fn, /function throws a reference error/);
+ * should.throw(fn, ReferenceError);
+ * should.throw(fn, ReferenceError, 'function throws a reference error');
+ * should.throw(fn, ReferenceError, /function throws a reference error/);
+ *
+ * @name throw
+ * @alias Throw
+ * @param {Function} function
+ * @param {ErrorConstructor} constructor
+ * @param {RegExp} regexp
+ * @param {String} message
+ * @see https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Error#Error_types
+ * @namespace Should
+ * @api public
+ */
+
+ should.Throw = function (fn, errt, errs, msg) {
+ new Assertion(fn, msg).to.Throw(errt, errs);
+ };
+
+ /**
+ * ### .exist
+ *
+ * Asserts that the target is neither `null` nor `undefined`.
+ *
+ * var foo = 'hi';
+ *
+ * should.exist(foo, 'foo exists');
+ *
+ * @name exist
+ * @namespace Should
+ * @api public
+ */
+
+ should.exist = function (val, msg) {
+ new Assertion(val, msg).to.exist;
+ }
+
+ // negation
+ should.not = {}
+
+ /**
+ * ### .not.equal(actual, expected, [message])
+ *
+ * Asserts non-strict inequality (`!=`) of `actual` and `expected`.
+ *
+ * should.not.equal(3, 4, 'these numbers are not equal');
+ *
+ * @name not.equal
+ * @param {Mixed} actual
+ * @param {Mixed} expected
+ * @param {String} message
+ * @namespace Should
+ * @api public
+ */
+
+ should.not.equal = function (val1, val2, msg) {
+ new Assertion(val1, msg).to.not.equal(val2);
+ };
+
+ /**
+ * ### .throw(function, [constructor/regexp], [message])
+ *
+ * Asserts that `function` will _not_ throw an error that is an instance of
+ * `constructor`, or alternately that it will not throw an error with message
+ * matching `regexp`.
+ *
+ * should.not.throw(fn, Error, 'function does not throw');
+ *
+ * @name not.throw
+ * @alias not.Throw
+ * @param {Function} function
+ * @param {ErrorConstructor} constructor
+ * @param {RegExp} regexp
+ * @param {String} message
+ * @see https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Error#Error_types
+ * @namespace Should
+ * @api public
+ */
+
+ should.not.Throw = function (fn, errt, errs, msg) {
+ new Assertion(fn, msg).to.not.Throw(errt, errs);
+ };
+
+ /**
+ * ### .not.exist
+ *
+ * Asserts that the target is neither `null` nor `undefined`.
+ *
+ * var bar = null;
+ *
+ * should.not.exist(bar, 'bar does not exist');
+ *
+ * @name not.exist
+ * @namespace Should
+ * @api public
+ */
+
+ should.not.exist = function (val, msg) {
+ new Assertion(val, msg).to.not.exist;
+ }
+
+ should['throw'] = should['Throw'];
+ should.not['throw'] = should.not['Throw'];
+
+ return should;
+ };
+
+ chai.should = loadShould;
+ chai.Should = loadShould;
+};
+
+},{}],9:[function(require,module,exports){
+/*!
+ * Chai - addChainingMethod utility
+ * Copyright(c) 2012-2014 Jake Luer
+ * MIT Licensed
+ */
+
+/*!
+ * Module dependencies
+ */
+
+var addLengthGuard = require('./addLengthGuard');
+var chai = require('../../chai');
+var flag = require('./flag');
+var proxify = require('./proxify');
+var transferFlags = require('./transferFlags');
+
+/*!
+ * Module variables
+ */
+
+// Check whether `Object.setPrototypeOf` is supported
+var canSetPrototype = typeof Object.setPrototypeOf === 'function';
+
+// Without `Object.setPrototypeOf` support, this module will need to add properties to a function.
+// However, some of functions' own props are not configurable and should be skipped.
+var testFn = function() {};
+var excludeNames = Object.getOwnPropertyNames(testFn).filter(function(name) {
+ var propDesc = Object.getOwnPropertyDescriptor(testFn, name);
+
+ // Note: PhantomJS 1.x includes `callee` as one of `testFn`'s own properties,
+ // but then returns `undefined` as the property descriptor for `callee`. As a
+ // workaround, we perform an otherwise unnecessary type-check for `propDesc`,
+ // and then filter it out if it's not an object as it should be.
+ if (typeof propDesc !== 'object')
+ return true;
+
+ return !propDesc.configurable;
+});
+
+// Cache `Function` properties
+var call = Function.prototype.call,
+ apply = Function.prototype.apply;
+
+/**
+ * ### .addChainableMethod(ctx, name, method, chainingBehavior)
+ *
+ * Adds a method to an object, such that the method can also be chained.
+ *
+ * utils.addChainableMethod(chai.Assertion.prototype, 'foo', function (str) {
+ * var obj = utils.flag(this, 'object');
+ * new chai.Assertion(obj).to.be.equal(str);
+ * });
+ *
+ * Can also be accessed directly from `chai.Assertion`.
+ *
+ * chai.Assertion.addChainableMethod('foo', fn, chainingBehavior);
+ *
+ * The result can then be used as both a method assertion, executing both `method` and
+ * `chainingBehavior`, or as a language chain, which only executes `chainingBehavior`.
+ *
+ * expect(fooStr).to.be.foo('bar');
+ * expect(fooStr).to.be.foo.equal('foo');
+ *
+ * @param {Object} ctx object to which the method is added
+ * @param {String} name of method to add
+ * @param {Function} method function to be used for `name`, when called
+ * @param {Function} chainingBehavior function to be called every time the property is accessed
+ * @namespace Utils
+ * @name addChainableMethod
+ * @api public
+ */
+
+module.exports = function addChainableMethod(ctx, name, method, chainingBehavior) {
+ if (typeof chainingBehavior !== 'function') {
+ chainingBehavior = function () { };
+ }
+
+ var chainableBehavior = {
+ method: method
+ , chainingBehavior: chainingBehavior
+ };
+
+ // save the methods so we can overwrite them later, if we need to.
+ if (!ctx.__methods) {
+ ctx.__methods = {};
+ }
+ ctx.__methods[name] = chainableBehavior;
+
+ Object.defineProperty(ctx, name,
+ { get: function chainableMethodGetter() {
+ chainableBehavior.chainingBehavior.call(this);
+
+ var chainableMethodWrapper = function () {
+ // Setting the `ssfi` flag to `chainableMethodWrapper` causes this
+ // function to be the starting point for removing implementation
+ // frames from the stack trace of a failed assertion.
+ //
+ // However, we only want to use this function as the starting point if
+ // the `lockSsfi` flag isn't set.
+ //
+ // If the `lockSsfi` flag is set, then this assertion is being
+ // invoked from inside of another assertion. In this case, the `ssfi`
+ // flag has already been set by the outer assertion.
+ //
+ // Note that overwriting a chainable method merely replaces the saved
+ // methods in `ctx.__methods` instead of completely replacing the
+ // overwritten assertion. Therefore, an overwriting assertion won't
+ // set the `ssfi` or `lockSsfi` flags.
+ if (!flag(this, 'lockSsfi')) {
+ flag(this, 'ssfi', chainableMethodWrapper);
+ }
+
+ var result = chainableBehavior.method.apply(this, arguments);
+ if (result !== undefined) {
+ return result;
+ }
+
+ var newAssertion = new chai.Assertion();
+ transferFlags(this, newAssertion);
+ return newAssertion;
+ };
+
+ addLengthGuard(chainableMethodWrapper, name, true);
+
+ // Use `Object.setPrototypeOf` if available
+ if (canSetPrototype) {
+ // Inherit all properties from the object by replacing the `Function` prototype
+ var prototype = Object.create(this);
+ // Restore the `call` and `apply` methods from `Function`
+ prototype.call = call;
+ prototype.apply = apply;
+ Object.setPrototypeOf(chainableMethodWrapper, prototype);
+ }
+ // Otherwise, redefine all properties (slow!)
+ else {
+ var asserterNames = Object.getOwnPropertyNames(ctx);
+ asserterNames.forEach(function (asserterName) {
+ if (excludeNames.indexOf(asserterName) !== -1) {
+ return;
+ }
+
+ var pd = Object.getOwnPropertyDescriptor(ctx, asserterName);
+ Object.defineProperty(chainableMethodWrapper, asserterName, pd);
+ });
+ }
+
+ transferFlags(this, chainableMethodWrapper);
+ return proxify(chainableMethodWrapper);
+ }
+ , configurable: true
+ });
+};
+
+},{"../../chai":2,"./addLengthGuard":10,"./flag":15,"./proxify":30,"./transferFlags":32}],10:[function(require,module,exports){
+var fnLengthDesc = Object.getOwnPropertyDescriptor(function () {}, 'length');
+
+/*!
+ * Chai - addLengthGuard utility
+ * Copyright(c) 2012-2014 Jake Luer
+ * MIT Licensed
+ */
+
+/**
+ * ### .addLengthGuard(fn, assertionName, isChainable)
+ *
+ * Define `length` as a getter on the given uninvoked method assertion. The
+ * getter acts as a guard against chaining `length` directly off of an uninvoked
+ * method assertion, which is a problem because it references `function`'s
+ * built-in `length` property instead of Chai's `length` assertion. When the
+ * getter catches the user making this mistake, it throws an error with a
+ * helpful message.
+ *
+ * There are two ways in which this mistake can be made. The first way is by
+ * chaining the `length` assertion directly off of an uninvoked chainable
+ * method. In this case, Chai suggests that the user use `lengthOf` instead. The
+ * second way is by chaining the `length` assertion directly off of an uninvoked
+ * non-chainable method. Non-chainable methods must be invoked prior to
+ * chaining. In this case, Chai suggests that the user consult the docs for the
+ * given assertion.
+ *
+ * If the `length` property of functions is unconfigurable, then return `fn`
+ * without modification.
+ *
+ * Note that in ES6, the function's `length` property is configurable, so once
+ * support for legacy environments is dropped, Chai's `length` property can
+ * replace the built-in function's `length` property, and this length guard will
+ * no longer be necessary. In the mean time, maintaining consistency across all
+ * environments is the priority.
+ *
+ * @param {Function} fn
+ * @param {String} assertionName
+ * @param {Boolean} isChainable
+ * @namespace Utils
+ * @name addLengthGuard
+ */
+
+module.exports = function addLengthGuard (fn, assertionName, isChainable) {
+ if (!fnLengthDesc.configurable) return fn;
+
+ Object.defineProperty(fn, 'length', {
+ get: function () {
+ if (isChainable) {
+ throw Error('Invalid Chai property: ' + assertionName + '.length. Due' +
+ ' to a compatibility issue, "length" cannot directly follow "' +
+ assertionName + '". Use "' + assertionName + '.lengthOf" instead.');
+ }
+
+ throw Error('Invalid Chai property: ' + assertionName + '.length. See' +
+ ' docs for proper usage of "' + assertionName + '".');
+ }
+ });
+
+ return fn;
+};
+
+},{}],11:[function(require,module,exports){
+/*!
+ * Chai - addMethod utility
+ * Copyright(c) 2012-2014 Jake Luer
+ * MIT Licensed
+ */
+
+var addLengthGuard = require('./addLengthGuard');
+var chai = require('../../chai');
+var flag = require('./flag');
+var proxify = require('./proxify');
+var transferFlags = require('./transferFlags');
+
+/**
+ * ### .addMethod(ctx, name, method)
+ *
+ * Adds a method to the prototype of an object.
+ *
+ * utils.addMethod(chai.Assertion.prototype, 'foo', function (str) {
+ * var obj = utils.flag(this, 'object');
+ * new chai.Assertion(obj).to.be.equal(str);
+ * });
+ *
+ * Can also be accessed directly from `chai.Assertion`.
+ *
+ * chai.Assertion.addMethod('foo', fn);
+ *
+ * Then can be used as any other assertion.
+ *
+ * expect(fooStr).to.be.foo('bar');
+ *
+ * @param {Object} ctx object to which the method is added
+ * @param {String} name of method to add
+ * @param {Function} method function to be used for name
+ * @namespace Utils
+ * @name addMethod
+ * @api public
+ */
+
+module.exports = function addMethod(ctx, name, method) {
+ var methodWrapper = function () {
+ // Setting the `ssfi` flag to `methodWrapper` causes this function to be the
+ // starting point for removing implementation frames from the stack trace of
+ // a failed assertion.
+ //
+ // However, we only want to use this function as the starting point if the
+ // `lockSsfi` flag isn't set.
+ //
+ // If the `lockSsfi` flag is set, then either this assertion has been
+ // overwritten by another assertion, or this assertion is being invoked from
+ // inside of another assertion. In the first case, the `ssfi` flag has
+ // already been set by the overwriting assertion. In the second case, the
+ // `ssfi` flag has already been set by the outer assertion.
+ if (!flag(this, 'lockSsfi')) {
+ flag(this, 'ssfi', methodWrapper);
+ }
+
+ var result = method.apply(this, arguments);
+ if (result !== undefined)
+ return result;
+
+ var newAssertion = new chai.Assertion();
+ transferFlags(this, newAssertion);
+ return newAssertion;
+ };
+
+ addLengthGuard(methodWrapper, name, false);
+ ctx[name] = proxify(methodWrapper, name);
+};
+
+},{"../../chai":2,"./addLengthGuard":10,"./flag":15,"./proxify":30,"./transferFlags":32}],12:[function(require,module,exports){
+/*!
+ * Chai - addProperty utility
+ * Copyright(c) 2012-2014 Jake Luer
+ * MIT Licensed
+ */
+
+var chai = require('../../chai');
+var flag = require('./flag');
+var isProxyEnabled = require('./isProxyEnabled');
+var transferFlags = require('./transferFlags');
+
+/**
+ * ### .addProperty(ctx, name, getter)
+ *
+ * Adds a property to the prototype of an object.
+ *
+ * utils.addProperty(chai.Assertion.prototype, 'foo', function () {
+ * var obj = utils.flag(this, 'object');
+ * new chai.Assertion(obj).to.be.instanceof(Foo);
+ * });
+ *
+ * Can also be accessed directly from `chai.Assertion`.
+ *
+ * chai.Assertion.addProperty('foo', fn);
+ *
+ * Then can be used as any other assertion.
+ *
+ * expect(myFoo).to.be.foo;
+ *
+ * @param {Object} ctx object to which the property is added
+ * @param {String} name of property to add
+ * @param {Function} getter function to be used for name
+ * @namespace Utils
+ * @name addProperty
+ * @api public
+ */
+
+module.exports = function addProperty(ctx, name, getter) {
+ getter = getter === undefined ? function () {} : getter;
+
+ Object.defineProperty(ctx, name,
+ { get: function propertyGetter() {
+ // Setting the `ssfi` flag to `propertyGetter` causes this function to
+ // be the starting point for removing implementation frames from the
+ // stack trace of a failed assertion.
+ //
+ // However, we only want to use this function as the starting point if
+ // the `lockSsfi` flag isn't set and proxy protection is disabled.
+ //
+ // If the `lockSsfi` flag is set, then either this assertion has been
+ // overwritten by another assertion, or this assertion is being invoked
+ // from inside of another assertion. In the first case, the `ssfi` flag
+ // has already been set by the overwriting assertion. In the second
+ // case, the `ssfi` flag has already been set by the outer assertion.
+ //
+ // If proxy protection is enabled, then the `ssfi` flag has already been
+ // set by the proxy getter.
+ if (!isProxyEnabled() && !flag(this, 'lockSsfi')) {
+ flag(this, 'ssfi', propertyGetter);
+ }
+
+ var result = getter.call(this);
+ if (result !== undefined)
+ return result;
+
+ var newAssertion = new chai.Assertion();
+ transferFlags(this, newAssertion);
+ return newAssertion;
+ }
+ , configurable: true
+ });
+};
+
+},{"../../chai":2,"./flag":15,"./isProxyEnabled":25,"./transferFlags":32}],13:[function(require,module,exports){
+/*!
+ * Chai - compareByInspect utility
+ * Copyright(c) 2011-2016 Jake Luer
+ * MIT Licensed
+ */
+
+/*!
+ * Module dependencies
+ */
+
+var inspect = require('./inspect');
+
+/**
+ * ### .compareByInspect(mixed, mixed)
+ *
+ * To be used as a compareFunction with Array.prototype.sort. Compares elements
+ * using inspect instead of default behavior of using toString so that Symbols
+ * and objects with irregular/missing toString can still be sorted without a
+ * TypeError.
+ *
+ * @param {Mixed} first element to compare
+ * @param {Mixed} second element to compare
+ * @returns {Number} -1 if 'a' should come before 'b'; otherwise 1
+ * @name compareByInspect
+ * @namespace Utils
+ * @api public
+ */
+
+module.exports = function compareByInspect(a, b) {
+ return inspect(a) < inspect(b) ? -1 : 1;
+};
+
+},{"./inspect":23}],14:[function(require,module,exports){
+/*!
+ * Chai - expectTypes utility
+ * Copyright(c) 2012-2014 Jake Luer
+ * MIT Licensed
+ */
+
+/**
+ * ### .expectTypes(obj, types)
+ *
+ * Ensures that the object being tested against is of a valid type.
+ *
+ * utils.expectTypes(this, ['array', 'object', 'string']);
+ *
+ * @param {Mixed} obj constructed Assertion
+ * @param {Array} type A list of allowed types for this assertion
+ * @namespace Utils
+ * @name expectTypes
+ * @api public
+ */
+
+var AssertionError = require('assertion-error');
+var flag = require('./flag');
+var type = require('type-detect');
+
+module.exports = function expectTypes(obj, types) {
+ var flagMsg = flag(obj, 'message');
+ var ssfi = flag(obj, 'ssfi');
+
+ flagMsg = flagMsg ? flagMsg + ': ' : '';
+
+ obj = flag(obj, 'object');
+ types = types.map(function (t) { return t.toLowerCase(); });
+ types.sort();
+
+ // Transforms ['lorem', 'ipsum'] into 'a lorem, or an ipsum'
+ var str = types.map(function (t, index) {
+ var art = ~[ 'a', 'e', 'i', 'o', 'u' ].indexOf(t.charAt(0)) ? 'an' : 'a';
+ var or = types.length > 1 && index === types.length - 1 ? 'or ' : '';
+ return or + art + ' ' + t;
+ }).join(', ');
+
+ var objType = type(obj).toLowerCase();
+
+ if (!types.some(function (expected) { return objType === expected; })) {
+ throw new AssertionError(
+ flagMsg + 'object tested must be ' + str + ', but ' + objType + ' given',
+ undefined,
+ ssfi
+ );
+ }
+};
+
+},{"./flag":15,"assertion-error":33,"type-detect":38}],15:[function(require,module,exports){
+/*!
+ * Chai - flag utility
+ * Copyright(c) 2012-2014 Jake Luer
+ * MIT Licensed
+ */
+
+/**
+ * ### .flag(object, key, [value])
+ *
+ * Get or set a flag value on an object. If a
+ * value is provided it will be set, else it will
+ * return the currently set value or `undefined` if
+ * the value is not set.
+ *
+ * utils.flag(this, 'foo', 'bar'); // setter
+ * utils.flag(this, 'foo'); // getter, returns `bar`
+ *
+ * @param {Object} object constructed Assertion
+ * @param {String} key
+ * @param {Mixed} value (optional)
+ * @namespace Utils
+ * @name flag
+ * @api private
+ */
+
+module.exports = function flag(obj, key, value) {
+ var flags = obj.__flags || (obj.__flags = Object.create(null));
+ if (arguments.length === 3) {
+ flags[key] = value;
+ } else {
+ return flags[key];
+ }
+};
+
+},{}],16:[function(require,module,exports){
+/*!
+ * Chai - getActual utility
+ * Copyright(c) 2012-2014 Jake Luer
+ * MIT Licensed
+ */
+
+/**
+ * ### .getActual(object, [actual])
+ *
+ * Returns the `actual` value for an Assertion.
+ *
+ * @param {Object} object (constructed Assertion)
+ * @param {Arguments} chai.Assertion.prototype.assert arguments
+ * @namespace Utils
+ * @name getActual
+ */
+
+module.exports = function getActual(obj, args) {
+ return args.length > 4 ? args[4] : obj._obj;
+};
+
+},{}],17:[function(require,module,exports){
+/*!
+ * Chai - getEnumerableProperties utility
+ * Copyright(c) 2012-2014 Jake Luer
+ * MIT Licensed
+ */
+
+/**
+ * ### .getEnumerableProperties(object)
+ *
+ * This allows the retrieval of enumerable property names of an object,
+ * inherited or not.
+ *
+ * @param {Object} object
+ * @returns {Array}
+ * @namespace Utils
+ * @name getEnumerableProperties
+ * @api public
+ */
+
+module.exports = function getEnumerableProperties(object) {
+ var result = [];
+ for (var name in object) {
+ result.push(name);
+ }
+ return result;
+};
+
+},{}],18:[function(require,module,exports){
+/*!
+ * Chai - message composition utility
+ * Copyright(c) 2012-2014 Jake Luer
+ * MIT Licensed
+ */
+
+/*!
+ * Module dependencies
+ */
+
+var flag = require('./flag')
+ , getActual = require('./getActual')
+ , objDisplay = require('./objDisplay');
+
+/**
+ * ### .getMessage(object, message, negateMessage)
+ *
+ * Construct the error message based on flags
+ * and template tags. Template tags will return
+ * a stringified inspection of the object referenced.
+ *
+ * Message template tags:
+ * - `#{this}` current asserted object
+ * - `#{act}` actual value
+ * - `#{exp}` expected value
+ *
+ * @param {Object} object (constructed Assertion)
+ * @param {Arguments} chai.Assertion.prototype.assert arguments
+ * @namespace Utils
+ * @name getMessage
+ * @api public
+ */
+
+module.exports = function getMessage(obj, args) {
+ var negate = flag(obj, 'negate')
+ , val = flag(obj, 'object')
+ , expected = args[3]
+ , actual = getActual(obj, args)
+ , msg = negate ? args[2] : args[1]
+ , flagMsg = flag(obj, 'message');
+
+ if(typeof msg === "function") msg = msg();
+ msg = msg || '';
+ msg = msg
+ .replace(/#\{this\}/g, function () { return objDisplay(val); })
+ .replace(/#\{act\}/g, function () { return objDisplay(actual); })
+ .replace(/#\{exp\}/g, function () { return objDisplay(expected); });
+
+ return flagMsg ? flagMsg + ': ' + msg : msg;
+};
+
+},{"./flag":15,"./getActual":16,"./objDisplay":26}],19:[function(require,module,exports){
+/*!
+ * Chai - getOwnEnumerableProperties utility
+ * Copyright(c) 2011-2016 Jake Luer
+ * MIT Licensed
+ */
+
+/*!
+ * Module dependencies
+ */
+
+var getOwnEnumerablePropertySymbols = require('./getOwnEnumerablePropertySymbols');
+
+/**
+ * ### .getOwnEnumerableProperties(object)
+ *
+ * This allows the retrieval of directly-owned enumerable property names and
+ * symbols of an object. This function is necessary because Object.keys only
+ * returns enumerable property names, not enumerable property symbols.
+ *
+ * @param {Object} object
+ * @returns {Array}
+ * @namespace Utils
+ * @name getOwnEnumerableProperties
+ * @api public
+ */
+
+module.exports = function getOwnEnumerableProperties(obj) {
+ return Object.keys(obj).concat(getOwnEnumerablePropertySymbols(obj));
+};
+
+},{"./getOwnEnumerablePropertySymbols":20}],20:[function(require,module,exports){
+/*!
+ * Chai - getOwnEnumerablePropertySymbols utility
+ * Copyright(c) 2011-2016 Jake Luer
+ * MIT Licensed
+ */
+
+/**
+ * ### .getOwnEnumerablePropertySymbols(object)
+ *
+ * This allows the retrieval of directly-owned enumerable property symbols of an
+ * object. This function is necessary because Object.getOwnPropertySymbols
+ * returns both enumerable and non-enumerable property symbols.
+ *
+ * @param {Object} object
+ * @returns {Array}
+ * @namespace Utils
+ * @name getOwnEnumerablePropertySymbols
+ * @api public
+ */
+
+module.exports = function getOwnEnumerablePropertySymbols(obj) {
+ if (typeof Object.getOwnPropertySymbols !== 'function') return [];
+
+ return Object.getOwnPropertySymbols(obj).filter(function (sym) {
+ return Object.getOwnPropertyDescriptor(obj, sym).enumerable;
+ });
+};
+
+},{}],21:[function(require,module,exports){
+/*!
+ * Chai - getProperties utility
+ * Copyright(c) 2012-2014 Jake Luer
+ * MIT Licensed
+ */
+
+/**
+ * ### .getProperties(object)
+ *
+ * This allows the retrieval of property names of an object, enumerable or not,
+ * inherited or not.
+ *
+ * @param {Object} object
+ * @returns {Array}
+ * @namespace Utils
+ * @name getProperties
+ * @api public
+ */
+
+module.exports = function getProperties(object) {
+ var result = Object.getOwnPropertyNames(object);
+
+ function addProperty(property) {
+ if (result.indexOf(property) === -1) {
+ result.push(property);
+ }
+ }
+
+ var proto = Object.getPrototypeOf(object);
+ while (proto !== null) {
+ Object.getOwnPropertyNames(proto).forEach(addProperty);
+ proto = Object.getPrototypeOf(proto);
+ }
+
+ return result;
+};
+
+},{}],22:[function(require,module,exports){
+/*!
+ * chai
+ * Copyright(c) 2011 Jake Luer
+ * MIT Licensed
+ */
+
+/*!
+ * Dependencies that are used for multiple exports are required here only once
+ */
+
+var pathval = require('pathval');
+
+/*!
+ * test utility
+ */
+
+exports.test = require('./test');
+
+/*!
+ * type utility
+ */
+
+exports.type = require('type-detect');
+
+/*!
+ * expectTypes utility
+ */
+exports.expectTypes = require('./expectTypes');
+
+/*!
+ * message utility
+ */
+
+exports.getMessage = require('./getMessage');
+
+/*!
+ * actual utility
+ */
+
+exports.getActual = require('./getActual');
+
+/*!
+ * Inspect util
+ */
+
+exports.inspect = require('./inspect');
+
+/*!
+ * Object Display util
+ */
+
+exports.objDisplay = require('./objDisplay');
+
+/*!
+ * Flag utility
+ */
+
+exports.flag = require('./flag');
+
+/*!
+ * Flag transferring utility
+ */
+
+exports.transferFlags = require('./transferFlags');
+
+/*!
+ * Deep equal utility
+ */
+
+exports.eql = require('deep-eql');
+
+/*!
+ * Deep path info
+ */
+
+exports.getPathInfo = pathval.getPathInfo;
+
+/*!
+ * Check if a property exists
+ */
+
+exports.hasProperty = pathval.hasProperty;
+
+/*!
+ * Function name
+ */
+
+exports.getName = require('get-func-name');
+
+/*!
+ * add Property
+ */
+
+exports.addProperty = require('./addProperty');
+
+/*!
+ * add Method
+ */
+
+exports.addMethod = require('./addMethod');
+
+/*!
+ * overwrite Property
+ */
+
+exports.overwriteProperty = require('./overwriteProperty');
+
+/*!
+ * overwrite Method
+ */
+
+exports.overwriteMethod = require('./overwriteMethod');
+
+/*!
+ * Add a chainable method
+ */
+
+exports.addChainableMethod = require('./addChainableMethod');
+
+/*!
+ * Overwrite chainable method
+ */
+
+exports.overwriteChainableMethod = require('./overwriteChainableMethod');
+
+/*!
+ * Compare by inspect method
+ */
+
+exports.compareByInspect = require('./compareByInspect');
+
+/*!
+ * Get own enumerable property symbols method
+ */
+
+exports.getOwnEnumerablePropertySymbols = require('./getOwnEnumerablePropertySymbols');
+
+/*!
+ * Get own enumerable properties method
+ */
+
+exports.getOwnEnumerableProperties = require('./getOwnEnumerableProperties');
+
+/*!
+ * Checks error against a given set of criteria
+ */
+
+exports.checkError = require('check-error');
+
+/*!
+ * Proxify util
+ */
+
+exports.proxify = require('./proxify');
+
+/*!
+ * addLengthGuard util
+ */
+
+exports.addLengthGuard = require('./addLengthGuard');
+
+/*!
+ * isProxyEnabled helper
+ */
+
+exports.isProxyEnabled = require('./isProxyEnabled');
+
+/*!
+ * isNaN method
+ */
+
+exports.isNaN = require('./isNaN');
+
+},{"./addChainableMethod":9,"./addLengthGuard":10,"./addMethod":11,"./addProperty":12,"./compareByInspect":13,"./expectTypes":14,"./flag":15,"./getActual":16,"./getMessage":18,"./getOwnEnumerableProperties":19,"./getOwnEnumerablePropertySymbols":20,"./inspect":23,"./isNaN":24,"./isProxyEnabled":25,"./objDisplay":26,"./overwriteChainableMethod":27,"./overwriteMethod":28,"./overwriteProperty":29,"./proxify":30,"./test":31,"./transferFlags":32,"check-error":34,"deep-eql":35,"get-func-name":36,"pathval":37,"type-detect":38}],23:[function(require,module,exports){
+// This is (almost) directly from Node.js utils
+// https://github.com/joyent/node/blob/f8c335d0caf47f16d31413f89aa28eda3878e3aa/lib/util.js
+
+var getName = require('get-func-name');
+var getProperties = require('./getProperties');
+var getEnumerableProperties = require('./getEnumerableProperties');
+var config = require('../config');
+
+module.exports = inspect;
+
+/**
+ * ### .inspect(obj, [showHidden], [depth], [colors])
+ *
+ * Echoes the value of a value. Tries to print the value out
+ * in the best way possible given the different types.
+ *
+ * @param {Object} obj The object to print out.
+ * @param {Boolean} showHidden Flag that shows hidden (not enumerable)
+ * properties of objects. Default is false.
+ * @param {Number} depth Depth in which to descend in object. Default is 2.
+ * @param {Boolean} colors Flag to turn on ANSI escape codes to color the
+ * output. Default is false (no coloring).
+ * @namespace Utils
+ * @name inspect
+ */
+function inspect(obj, showHidden, depth, colors) {
+ var ctx = {
+ showHidden: showHidden,
+ seen: [],
+ stylize: function (str) { return str; }
+ };
+ return formatValue(ctx, obj, (typeof depth === 'undefined' ? 2 : depth));
+}
+
+// Returns true if object is a DOM element.
+var isDOMElement = function (object) {
+ if (typeof HTMLElement === 'object') {
+ return object instanceof HTMLElement;
+ } else {
+ return object &&
+ typeof object === 'object' &&
+ 'nodeType' in object &&
+ object.nodeType === 1 &&
+ typeof object.nodeName === 'string';
+ }
+};
+
+function formatValue(ctx, value, recurseTimes) {
+ // Provide a hook for user-specified inspect functions.
+ // Check that value is an object with an inspect function on it
+ if (value && typeof value.inspect === 'function' &&
+ // Filter out the util module, it's inspect function is special
+ value.inspect !== exports.inspect &&
+ // Also filter out any prototype objects using the circular check.
+ !(value.constructor && value.constructor.prototype === value)) {
+ var ret = value.inspect(recurseTimes, ctx);
+ if (typeof ret !== 'string') {
+ ret = formatValue(ctx, ret, recurseTimes);
+ }
+ return ret;
+ }
+
+ // Primitive types cannot have properties
+ var primitive = formatPrimitive(ctx, value);
+ if (primitive) {
+ return primitive;
+ }
+
+ // If this is a DOM element, try to get the outer HTML.
+ if (isDOMElement(value)) {
+ if ('outerHTML' in value) {
+ return value.outerHTML;
+ // This value does not have an outerHTML attribute,
+ // it could still be an XML element
+ } else {
+ // Attempt to serialize it
+ try {
+ if (document.xmlVersion) {
+ var xmlSerializer = new XMLSerializer();
+ return xmlSerializer.serializeToString(value);
+ } else {
+ // Firefox 11- do not support outerHTML
+ // It does, however, support innerHTML
+ // Use the following to render the element
+ var ns = "http://www.w3.org/1999/xhtml";
+ var container = document.createElementNS(ns, '_');
+
+ container.appendChild(value.cloneNode(false));
+ var html = container.innerHTML
+ .replace('><', '>' + value.innerHTML + '<');
+ container.innerHTML = '';
+ return html;
+ }
+ } catch (err) {
+ // This could be a non-native DOM implementation,
+ // continue with the normal flow:
+ // printing the element as if it is an object.
+ }
+ }
+ }
+
+ // Look up the keys of the object.
+ var visibleKeys = getEnumerableProperties(value);
+ var keys = ctx.showHidden ? getProperties(value) : visibleKeys;
+
+ var name, nameSuffix;
+
+ // Some type of object without properties can be shortcut.
+ // In IE, errors have a single `stack` property, or if they are vanilla `Error`,
+ // a `stack` plus `description` property; ignore those for consistency.
+ if (keys.length === 0 || (isError(value) && (
+ (keys.length === 1 && keys[0] === 'stack') ||
+ (keys.length === 2 && keys[0] === 'description' && keys[1] === 'stack')
+ ))) {
+ if (typeof value === 'function') {
+ name = getName(value);
+ nameSuffix = name ? ': ' + name : '';
+ return ctx.stylize('[Function' + nameSuffix + ']', 'special');
+ }
+ if (isRegExp(value)) {
+ return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');
+ }
+ if (isDate(value)) {
+ return ctx.stylize(Date.prototype.toUTCString.call(value), 'date');
+ }
+ if (isError(value)) {
+ return formatError(value);
+ }
+ }
+
+ var base = ''
+ , array = false
+ , typedArray = false
+ , braces = ['{', '}'];
+
+ if (isTypedArray(value)) {
+ typedArray = true;
+ braces = ['[', ']'];
+ }
+
+ // Make Array say that they are Array
+ if (isArray(value)) {
+ array = true;
+ braces = ['[', ']'];
+ }
+
+ // Make functions say that they are functions
+ if (typeof value === 'function') {
+ name = getName(value);
+ nameSuffix = name ? ': ' + name : '';
+ base = ' [Function' + nameSuffix + ']';
+ }
+
+ // Make RegExps say that they are RegExps
+ if (isRegExp(value)) {
+ base = ' ' + RegExp.prototype.toString.call(value);
+ }
+
+ // Make dates with properties first say the date
+ if (isDate(value)) {
+ base = ' ' + Date.prototype.toUTCString.call(value);
+ }
+
+ // Make error with message first say the error
+ if (isError(value)) {
+ return formatError(value);
+ }
+
+ if (keys.length === 0 && (!array || value.length == 0)) {
+ return braces[0] + base + braces[1];
+ }
+
+ if (recurseTimes < 0) {
+ if (isRegExp(value)) {
+ return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');
+ } else {
+ return ctx.stylize('[Object]', 'special');
+ }
+ }
+
+ ctx.seen.push(value);
+
+ var output;
+ if (array) {
+ output = formatArray(ctx, value, recurseTimes, visibleKeys, keys);
+ } else if (typedArray) {
+ return formatTypedArray(value);
+ } else {
+ output = keys.map(function(key) {
+ return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array);
+ });
+ }
+
+ ctx.seen.pop();
+
+ return reduceToSingleString(output, base, braces);
+}
+
+function formatPrimitive(ctx, value) {
+ switch (typeof value) {
+ case 'undefined':
+ return ctx.stylize('undefined', 'undefined');
+
+ case 'string':
+ var simple = '\'' + JSON.stringify(value).replace(/^"|"$/g, '')
+ .replace(/'/g, "\\'")
+ .replace(/\\"/g, '"') + '\'';
+ return ctx.stylize(simple, 'string');
+
+ case 'number':
+ if (value === 0 && (1/value) === -Infinity) {
+ return ctx.stylize('-0', 'number');
+ }
+ return ctx.stylize('' + value, 'number');
+
+ case 'boolean':
+ return ctx.stylize('' + value, 'boolean');
+
+ case 'symbol':
+ return ctx.stylize(value.toString(), 'symbol');
+ }
+ // For some reason typeof null is "object", so special case here.
+ if (value === null) {
+ return ctx.stylize('null', 'null');
+ }
+}
+
+function formatError(value) {
+ return '[' + Error.prototype.toString.call(value) + ']';
+}
+
+function formatArray(ctx, value, recurseTimes, visibleKeys, keys) {
+ var output = [];
+ for (var i = 0, l = value.length; i < l; ++i) {
+ if (Object.prototype.hasOwnProperty.call(value, String(i))) {
+ output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,
+ String(i), true));
+ } else {
+ output.push('');
+ }
+ }
+
+ keys.forEach(function(key) {
+ if (!key.match(/^\d+$/)) {
+ output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,
+ key, true));
+ }
+ });
+ return output;
+}
+
+function formatTypedArray(value) {
+ var str = '[ ';
+
+ for (var i = 0; i < value.length; ++i) {
+ if (str.length >= config.truncateThreshold - 7) {
+ str += '...';
+ break;
+ }
+ str += value[i] + ', ';
+ }
+ str += ' ]';
+
+ // Removing trailing `, ` if the array was not truncated
+ if (str.indexOf(', ]') !== -1) {
+ str = str.replace(', ]', ' ]');
+ }
+
+ return str;
+}
+
+function formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) {
+ var name;
+ var propDescriptor = Object.getOwnPropertyDescriptor(value, key);
+ var str;
+
+ if (propDescriptor) {
+ if (propDescriptor.get) {
+ if (propDescriptor.set) {
+ str = ctx.stylize('[Getter/Setter]', 'special');
+ } else {
+ str = ctx.stylize('[Getter]', 'special');
+ }
+ } else {
+ if (propDescriptor.set) {
+ str = ctx.stylize('[Setter]', 'special');
+ }
+ }
+ }
+ if (visibleKeys.indexOf(key) < 0) {
+ name = '[' + key + ']';
+ }
+ if (!str) {
+ if (ctx.seen.indexOf(value[key]) < 0) {
+ if (recurseTimes === null) {
+ str = formatValue(ctx, value[key], null);
+ } else {
+ str = formatValue(ctx, value[key], recurseTimes - 1);
+ }
+ if (str.indexOf('\n') > -1) {
+ if (array) {
+ str = str.split('\n').map(function(line) {
+ return ' ' + line;
+ }).join('\n').substr(2);
+ } else {
+ str = '\n' + str.split('\n').map(function(line) {
+ return ' ' + line;
+ }).join('\n');
+ }
+ }
+ } else {
+ str = ctx.stylize('[Circular]', 'special');
+ }
+ }
+ if (typeof name === 'undefined') {
+ if (array && key.match(/^\d+$/)) {
+ return str;
+ }
+ name = JSON.stringify('' + key);
+ if (name.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)) {
+ name = name.substr(1, name.length - 2);
+ name = ctx.stylize(name, 'name');
+ } else {
+ name = name.replace(/'/g, "\\'")
+ .replace(/\\"/g, '"')
+ .replace(/(^"|"$)/g, "'");
+ name = ctx.stylize(name, 'string');
+ }
+ }
+
+ return name + ': ' + str;
+}
+
+function reduceToSingleString(output, base, braces) {
+ var length = output.reduce(function(prev, cur) {
+ return prev + cur.length + 1;
+ }, 0);
+
+ if (length > 60) {
+ return braces[0] +
+ (base === '' ? '' : base + '\n ') +
+ ' ' +
+ output.join(',\n ') +
+ ' ' +
+ braces[1];
+ }
+
+ return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];
+}
+
+function isTypedArray(ar) {
+ // Unfortunately there's no way to check if an object is a TypedArray
+ // We have to check if it's one of these types
+ return (typeof ar === 'object' && /\w+Array]$/.test(objectToString(ar)));
+}
+
+function isArray(ar) {
+ return Array.isArray(ar) ||
+ (typeof ar === 'object' && objectToString(ar) === '[object Array]');
+}
+
+function isRegExp(re) {
+ return typeof re === 'object' && objectToString(re) === '[object RegExp]';
+}
+
+function isDate(d) {
+ return typeof d === 'object' && objectToString(d) === '[object Date]';
+}
+
+function isError(e) {
+ return typeof e === 'object' && objectToString(e) === '[object Error]';
+}
+
+function objectToString(o) {
+ return Object.prototype.toString.call(o);
+}
+
+},{"../config":4,"./getEnumerableProperties":17,"./getProperties":21,"get-func-name":36}],24:[function(require,module,exports){
+/*!
+ * Chai - isNaN utility
+ * Copyright(c) 2012-2015 Sakthipriyan Vairamani
+ * MIT Licensed
+ */
+
+/**
+ * ### .isNaN(value)
+ *
+ * Checks if the given value is NaN or not.
+ *
+ * utils.isNaN(NaN); // true
+ *
+ * @param {Value} The value which has to be checked if it is NaN
+ * @name isNaN
+ * @api private
+ */
+
+function isNaN(value) {
+ // Refer http://www.ecma-international.org/ecma-262/6.0/#sec-isnan-number
+ // section's NOTE.
+ return value !== value;
+}
+
+// If ECMAScript 6's Number.isNaN is present, prefer that.
+module.exports = Number.isNaN || isNaN;
+
+},{}],25:[function(require,module,exports){
+var config = require('../config');
+
+/*!
+ * Chai - isProxyEnabled helper
+ * Copyright(c) 2012-2014 Jake Luer
+ * MIT Licensed
+ */
+
+/**
+ * ### .isProxyEnabled()
+ *
+ * Helper function to check if Chai's proxy protection feature is enabled. If
+ * proxies are unsupported or disabled via the user's Chai config, then return
+ * false. Otherwise, return true.
+ *
+ * @namespace Utils
+ * @name isProxyEnabled
+ */
+
+module.exports = function isProxyEnabled() {
+ return config.useProxy &&
+ typeof Proxy !== 'undefined' &&
+ typeof Reflect !== 'undefined';
+};
+
+},{"../config":4}],26:[function(require,module,exports){
+/*!
+ * Chai - flag utility
+ * Copyright(c) 2012-2014 Jake Luer