PHP 8.2.31
Preview: wordcount.js Size: 6.93 KB
//proc/self/root/home/nshryvcy/blissfulnepal.com/wp-includes/js/dist/wordcount.js

"use strict";
var wp;
(wp ||= {}).wordcount = (() => {
  var __defProp = Object.defineProperty;
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
  var __getOwnPropNames = Object.getOwnPropertyNames;
  var __hasOwnProp = Object.prototype.hasOwnProperty;
  var __export = (target, all) => {
    for (var name in all)
      __defProp(target, name, { get: all[name], enumerable: true });
  };
  var __copyProps = (to, from, except, desc) => {
    if (from && typeof from === "object" || typeof from === "function") {
      for (let key of __getOwnPropNames(from))
        if (!__hasOwnProp.call(to, key) && key !== except)
          __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
    }
    return to;
  };
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);

  // packages/wordcount/build-module/index.mjs
  var index_exports = {};
  __export(index_exports, {
    count: () => count
  });

  // packages/wordcount/build-module/defaultSettings.mjs
  var defaultSettings = {
    HTMLRegExp: /<\/?[a-z][^>]*?>/gi,
    HTMLcommentRegExp: /<!--[\s\S]*?-->/g,
    spaceRegExp: /&nbsp;|&#160;/gi,
    HTMLEntityRegExp: /&\S+?;/g,
    // \u2014 = em-dash.
    connectorRegExp: /--|\u2014/g,
    // Characters to be removed from input text.
    removeRegExp: new RegExp(
      [
        "[",
        // Basic Latin (extract)
        "!-/:-@[-`{-~",
        // Latin-1 Supplement (extract)
        "\x80-\xBF\xD7\xF7",
        /*
         * The following range consists of:
         * General Punctuation
         * Superscripts and Subscripts
         * Currency Symbols
         * Combining Diacritical Marks for Symbols
         * Letterlike Symbols
         * Number Forms
         * Arrows
         * Mathematical Operators
         * Miscellaneous Technical
         * Control Pictures
         * Optical Character Recognition
         * Enclosed Alphanumerics
         * Box Drawing
         * Block Elements
         * Geometric Shapes
         * Miscellaneous Symbols
         * Dingbats
         * Miscellaneous Mathematical Symbols-A
         * Supplemental Arrows-A
         * Braille Patterns
         * Supplemental Arrows-B
         * Miscellaneous Mathematical Symbols-B
         * Supplemental Mathematical Operators
         * Miscellaneous Symbols and Arrows
         */
        "\u2000-\u2BFF",
        // Supplemental Punctuation.
        "\u2E00-\u2E7F",
        "]"
      ].join(""),
      "g"
    ),
    // Remove UTF-16 surrogate points, see https://en.wikipedia.org/wiki/UTF-16#U.2BD800_to_U.2BDFFF
    astralRegExp: /[\uD800-\uDBFF][\uDC00-\uDFFF]/g,
    wordsRegExp: /\S\s+/g,
    characters_excluding_spacesRegExp: /\S/g,
    /*
     * Match anything that is not a formatting character, excluding:
     * \f = form feed
     * \n = new line
     * \r = carriage return
     * \t = tab
     * \v = vertical tab
     * \u00AD = soft hyphen
     * \u2028 = line separator
     * \u2029 = paragraph separator
     */
    characters_including_spacesRegExp: /[^\f\n\r\t\v\u00AD\u2028\u2029]/g,
    l10n: {
      type: "words"
    }
  };

  // packages/wordcount/build-module/stripTags.mjs
  function stripTags(settings, text) {
    return text.replace(settings.HTMLRegExp, "\n");
  }

  // packages/wordcount/build-module/transposeAstralsToCountableChar.mjs
  function transposeAstralsToCountableChar(settings, text) {
    return text.replace(settings.astralRegExp, "a");
  }

  // packages/wordcount/build-module/stripHTMLEntities.mjs
  function stripHTMLEntities(settings, text) {
    return text.replace(settings.HTMLEntityRegExp, "");
  }

  // packages/wordcount/build-module/stripConnectors.mjs
  function stripConnectors(settings, text) {
    return text.replace(settings.connectorRegExp, " ");
  }

  // packages/wordcount/build-module/stripRemovables.mjs
  function stripRemovables(settings, text) {
    return text.replace(settings.removeRegExp, "");
  }

  // packages/wordcount/build-module/stripHTMLComments.mjs
  function stripHTMLComments(settings, text) {
    return text.replace(settings.HTMLcommentRegExp, "");
  }

  // packages/wordcount/build-module/stripShortcodes.mjs
  function stripShortcodes(settings, text) {
    if (settings.shortcodesRegExp) {
      return text.replace(settings.shortcodesRegExp, "\n");
    }
    return text;
  }

  // packages/wordcount/build-module/stripSpaces.mjs
  function stripSpaces(settings, text) {
    return text.replace(settings.spaceRegExp, " ");
  }

  // packages/wordcount/build-module/transposeHTMLEntitiesToCountableChars.mjs
  function transposeHTMLEntitiesToCountableChars(settings, text) {
    return text.replace(settings.HTMLEntityRegExp, "a");
  }

  // packages/wordcount/build-module/index.mjs
  function loadSettings(type = "words", userSettings = {}) {
    const mergedSettings = { ...defaultSettings, ...userSettings };
    const settings = {
      ...mergedSettings,
      type,
      shortcodes: []
    };
    settings.shortcodes = settings.l10n?.shortcodes ?? [];
    if (settings.shortcodes && settings.shortcodes.length) {
      settings.shortcodesRegExp = new RegExp(
        "\\[\\/?(?:" + settings.shortcodes.join("|") + ")[^\\]]*?\\]",
        "g"
      );
    }
    if (settings.type !== "characters_excluding_spaces" && settings.type !== "characters_including_spaces") {
      settings.type = "words";
    }
    return settings;
  }
  function countWords(text, regex, settings) {
    text = [
      stripTags.bind(null, settings),
      stripHTMLComments.bind(null, settings),
      stripShortcodes.bind(null, settings),
      stripSpaces.bind(null, settings),
      stripHTMLEntities.bind(null, settings),
      stripConnectors.bind(null, settings),
      stripRemovables.bind(null, settings)
    ].reduce((result, fn) => fn(result), text);
    text = text + "\n";
    return text.match(regex)?.length ?? 0;
  }
  function countCharacters(text, regex, settings) {
    text = [
      stripTags.bind(null, settings),
      stripHTMLComments.bind(null, settings),
      stripShortcodes.bind(null, settings),
      transposeAstralsToCountableChar.bind(null, settings),
      stripSpaces.bind(null, settings),
      transposeHTMLEntitiesToCountableChars.bind(null, settings)
    ].reduce((result, fn) => fn(result), text);
    text = text + "\n";
    return text.match(regex)?.length ?? 0;
  }
  function count(text, type, userSettings) {
    const settings = loadSettings(type, userSettings);
    let matchRegExp;
    switch (settings.type) {
      case "words":
        matchRegExp = settings.wordsRegExp;
        return countWords(text, matchRegExp, settings);
      case "characters_including_spaces":
        matchRegExp = settings.characters_including_spacesRegExp;
        return countCharacters(text, matchRegExp, settings);
      case "characters_excluding_spaces":
        matchRegExp = settings.characters_excluding_spacesRegExp;
        return countCharacters(text, matchRegExp, settings);
      default:
        return 0;
    }
  }
  return __toCommonJS(index_exports);
})();

Directory Contents

Dirs: 3 × Files: 132

Name Size Perms Modified Actions
- drwxr-xr-x 2023-11-12 05:03:56
Edit Download
- drwxr-xr-x 2026-05-21 08:23:01
Edit Download
vendor DIR
- drwxr-xr-x 2026-05-21 08:23:01
Edit Download
5.45 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
2.41 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
15.13 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
5.58 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
17.46 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
6.29 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
9.73 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
5.47 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
48 B lrw-r--r-- 2026-05-21 08:23:01
Edit Download
40 B lrw-r--r-- 2026-05-21 08:23:01
Edit Download
2.30 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
1.13 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
55.67 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
21.92 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
2.70 MB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
1.01 MB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
2.57 MB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
1.09 MB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
6.54 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
2.36 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
50.48 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
10.34 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
381.06 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
180.58 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
151.71 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
63.10 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
3.83 MB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
786.24 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
80.84 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
28.21 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
28.68 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
11.83 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
612.03 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
210.43 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
91.57 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
36.58 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
4.13 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
1.74 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
82.78 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
25.88 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
176.34 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
141.18 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
3.04 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
1.25 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
1.47 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
783 B lrw-r--r-- 2026-05-21 08:23:01
Edit Download
34.61 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
12.62 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
117.40 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
49.07 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
1.69 MB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
684.42 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
160.25 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
61.83 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
2.50 MB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
1,021.22 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
27.93 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
12.13 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
2.29 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
1.03 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
73.34 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
28.85 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
11.96 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
4.90 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
1.65 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
844 B lrw-r--r-- 2026-05-21 08:23:00
Edit Download
15.30 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
5.56 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
2.69 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
1.06 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
9.68 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
3.41 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
8.30 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
2.87 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
13.06 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
5.21 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
637.15 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
237.61 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
10.11 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
4.35 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
10.32 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
3.92 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
58.25 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
21.60 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
11.67 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
4.72 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
17.22 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
5.46 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
21.07 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
7.68 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
5.08 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
1.94 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
10.02 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
3.32 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
4.09 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
2.63 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
3.91 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
1.49 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
24.68 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
9.62 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
20.51 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
7.19 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
97.04 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
39.86 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
36.12 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
14.10 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
10.97 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
3.91 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
7.96 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
3.25 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
17.62 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
6.38 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
359.40 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
118.11 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
127.65 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
56.08 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
6.12 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
1.58 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
5.29 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
1.66 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
55.67 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
23.02 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
23.39 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
10.09 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
6.61 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
2.21 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
1.52 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
720 B lrw-r--r-- 2026-05-21 08:23:00
Edit Download
50.08 KB lrw-r--r-- 2026-05-21 08:23:00
Edit Download
20.79 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
6.93 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download
2.41 KB lrw-r--r-- 2026-05-21 08:23:01
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).