??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/bydatec.co.uk/wp-includes/js/dist/wordcount.js
⬅ Kembali
"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: / | /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);
})();
Nama
Tipe
Ukuran
Diubah
Aksi
📁 development
dir
—
2026-06-25 11:50
📁 script-modules
dir
—
2026-06-25 11:50
📁 vendor
dir
—
2026-06-25 11:50
📜 a11y.js
js
5.5 KB
2026-03-27 05:15
📜 a11y.min.js
js
2.4 KB
2026-03-27 05:15
📜 annotations.js
js
15.1 KB
2026-03-27 05:15
📜 annotations.min.js
js
5.6 KB
2026-03-27 05:15
📜 api-fetch.js
js
17.5 KB
2026-03-27 05:15
📜 api-fetch.min.js
js
6.3 KB
2026-03-27 05:15
📜 autop.js
js
9.7 KB
2026-03-27 05:15
📜 autop.min.js
js
5.5 KB
2026-03-27 05:15
📜 base-styles.js
js
48 B
2026-03-27 05:15
📜 base-styles.min.js
js
40 B
2026-03-27 05:15
📜 blob.js
js
2.3 KB
2026-03-27 05:15
📜 blob.min.js
js
1.1 KB
2026-03-27 05:15
📜 block-directory.js
js
55.7 KB
2026-03-27 05:15
📜 block-directory.min.js
js
21.9 KB
2026-03-27 05:15
📜 block-editor.js
js
2.7 MB
2026-05-14 16:53
📜 block-editor.min.js
js
1 MB
2026-05-14 16:53
📜 block-library.js
js
2.6 MB
2026-05-14 16:53
📜 block-library.min.js
js
1.1 MB
2026-05-14 16:53
📜 block-serialization-default-parser.js
js
6.5 KB
2026-03-27 05:15
📜 block-serialization-default-parser.min.js
js
2.4 KB
2026-03-27 05:15
📜 block-serialization-spec-parser.js
js
50.5 KB
2026-03-27 05:15
📜 block-serialization-spec-parser.min.js
js
10.3 KB
2026-03-27 05:15
📜 blocks.js
js
381.1 KB
2026-03-27 05:15
📜 blocks.min.js
js
180.6 KB
2026-03-27 05:15
📜 commands.js
js
151.7 KB
2026-03-27 05:15
📜 commands.min.js
js
63.1 KB
2026-03-27 05:15
📜 components.js
js
3.8 MB
2026-05-08 18:06
📜 components.min.js
js
786.2 KB
2026-05-08 18:06
📜 compose.js
js
80.8 KB
2026-03-27 05:15
📜 compose.min.js
js
28.2 KB
2026-03-27 05:15
📜 core-commands.js
js
28.7 KB
2026-03-27 05:15
📜 core-commands.min.js
js
11.8 KB
2026-03-27 05:15
📜 core-data.js
js
612 KB
2026-05-19 18:30
📜 core-data.min.js
js
210.4 KB
2026-05-19 18:30
📜 customize-widgets.js
js
91.6 KB
2026-03-27 05:15
📜 customize-widgets.min.js
js
36.6 KB
2026-03-27 05:15
📜 data-controls.js
js
4.1 KB
2026-03-27 05:15
📜 data-controls.min.js
js
1.7 KB
2026-03-27 05:15
📜 data.js
js
82.8 KB
2026-05-14 16:53
📜 data.min.js
js
25.9 KB
2026-05-14 16:53
📜 date.js
js
176.3 KB
2026-03-27 05:15
📜 date.min.js
js
141.2 KB
2026-03-27 05:15
📜 deprecated.js
js
3 KB
2026-03-27 05:15
📜 deprecated.min.js
js
1.3 KB
2026-03-27 05:15
📜 dom-ready.js
js
1.5 KB
2026-03-27 05:15
📜 dom-ready.min.js
js
783 B
2026-03-27 05:15
📜 dom.js
js
34.6 KB
2026-03-27 05:15
📜 dom.min.js
js
12.6 KB
2026-03-27 05:15
📜 edit-post.js
js
117.4 KB
2026-05-19 18:30
📜 edit-post.min.js
js
49.1 KB
2026-05-19 18:30
📜 edit-site.js
js
1.7 MB
2026-05-14 16:53
📜 edit-site.min.js
js
684.4 KB
2026-05-14 16:53
📜 edit-widgets.js
js
160.2 KB
2026-03-27 05:15
📜 edit-widgets.min.js
js
61.8 KB
2026-03-27 05:15
📜 editor.js
js
2.5 MB
2026-05-19 18:30
📜 editor.min.js
js
1021.2 KB
2026-05-19 18:30
📜 element.js
js
27.9 KB
2026-03-27 05:15
📜 element.min.js
js
12.1 KB
2026-03-27 05:15
📜 escape-html.js
js
2.3 KB
2026-03-27 05:15
📜 escape-html.min.js
js
1 KB
2026-03-27 05:15
📜 format-library.js
js
73.3 KB
2026-03-27 05:15
📜 format-library.min.js
js
28.8 KB
2026-03-27 05:15
📜 hooks.js
js
12 KB
2026-03-27 05:15
📜 hooks.min.js
js
4.9 KB
2026-03-27 05:15
📜 html-entities.js
js
1.6 KB
2026-03-27 05:15
📜 html-entities.min.js
js
844 B
2026-03-27 05:15
📜 i18n.js
js
15.3 KB
2026-03-27 05:15
📜 i18n.min.js
js
5.6 KB
2026-03-27 05:15
📜 is-shallow-equal.js
js
2.7 KB
2026-03-27 05:15
📜 is-shallow-equal.min.js
js
1.1 KB
2026-03-27 05:15
📜 keyboard-shortcuts.js
js
9.7 KB
2026-03-27 05:15
📜 keyboard-shortcuts.min.js
js
3.4 KB
2026-03-27 05:15
📜 keycodes.js
js
8.3 KB
2026-03-27 05:15
📜 keycodes.min.js
js
2.9 KB
2026-03-27 05:15
📜 list-reusable-blocks.js
js
13.1 KB
2026-03-27 05:15
📜 list-reusable-blocks.min.js
js
5.2 KB
2026-03-27 05:15
📜 media-utils.js
js
637.1 KB
2026-03-27 05:15
📜 media-utils.min.js
js
237.6 KB
2026-03-27 05:15
📜 notices.js
js
10.1 KB
2026-03-27 05:15
📜 notices.min.js
js
4.3 KB
2026-03-27 05:15
📜 nux.js
js
10.3 KB
2026-03-27 05:15
📜 nux.min.js
js
3.9 KB
2026-03-27 05:15
📜 patterns.js
js
58.2 KB
2026-05-08 18:06
📜 patterns.min.js
js
21.6 KB
2026-05-08 18:06
📜 plugins.js
js
11.7 KB
2026-03-27 05:15
📜 plugins.min.js
js
4.7 KB
2026-03-27 05:15
📜 preferences-persistence.js
js
17.2 KB
2026-03-27 05:15
📜 preferences-persistence.min.js
js
5.5 KB
2026-03-27 05:15
📜 preferences.js
js
21.1 KB
2026-03-27 05:15
📜 preferences.min.js
js
7.7 KB
2026-03-27 05:15
📜 primitives.js
js
5.1 KB
2026-03-27 05:15
📜 primitives.min.js
js
1.9 KB
2026-03-27 05:15
📜 priority-queue.js
js
10 KB
2026-03-27 05:15
📜 priority-queue.min.js
js
3.3 KB
2026-03-27 05:15
📜 private-apis.js
js
4.1 KB
2026-03-27 05:15
📜 private-apis.min.js
js
2.6 KB
2026-03-27 05:15
📜 react-i18n.js
js
3.9 KB
2026-03-27 05:15
📜 react-i18n.min.js
js
1.5 KB
2026-03-27 05:15
📜 redux-routine.js
js
24.7 KB
2026-03-27 05:15
📜 redux-routine.min.js
js
9.6 KB
2026-03-27 05:15
📜 reusable-blocks.js
js
20.5 KB
2026-05-08 18:06
📜 reusable-blocks.min.js
js
7.2 KB
2026-05-08 18:06
📜 rich-text.js
js
97 KB
2026-03-27 05:15
📜 rich-text.min.js
js
39.9 KB
2026-03-27 05:15
📜 router.js
js
36.1 KB
2026-03-27 05:15
📜 router.min.js
js
14.1 KB
2026-03-27 05:15
📜 server-side-render.js
js
11 KB
2026-03-27 05:15
📜 server-side-render.min.js
js
3.9 KB
2026-03-27 05:15
📜 shortcode.js
js
8 KB
2026-03-27 05:15
📜 shortcode.min.js
js
3.2 KB
2026-03-27 05:15
📜 style-engine.js
js
17.6 KB
2026-03-27 05:15
📜 style-engine.min.js
js
6.4 KB
2026-03-27 05:15
📜 sync.js
js
359.4 KB
2026-04-07 01:46
📜 sync.min.js
js
118.1 KB
2026-04-07 01:46
📜 theme.js
js
127.6 KB
2026-03-27 05:15
📜 theme.min.js
js
56.1 KB
2026-03-27 05:15
📜 token-list.js
js
6.1 KB
2026-03-27 05:15
📜 token-list.min.js
js
1.6 KB
2026-03-27 05:15
📜 undo-manager.js
js
5.3 KB
2026-03-27 05:15
📜 undo-manager.min.js
js
1.7 KB
2026-03-27 05:15
📜 upload-media.js
js
55.7 KB
2026-03-27 05:15
📜 upload-media.min.js
js
23 KB
2026-03-27 05:15
📜 url.js
js
23.4 KB
2026-03-27 05:15
📜 url.min.js
js
10.1 KB
2026-03-27 05:15
📜 viewport.js
js
6.6 KB
2026-03-27 05:15
📜 viewport.min.js
js
2.2 KB
2026-03-27 05:15
📜 warning.js
js
1.5 KB
2026-03-27 05:15
📜 warning.min.js
js
720 B
2026-03-27 05:15
📜 widgets.js
js
50.1 KB
2026-03-27 05:15
📜 widgets.min.js
js
20.8 KB
2026-03-27 05:15
📜 wordcount.js
js
6.9 KB
2026-03-27 05:15
📜 wordcount.min.js
js
2.4 KB
2026-03-27 05:15