??????????????
??????????????
??????????????
??????????????
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/netecfwd.co.uk/wp-includes/js/dist/keycodes.js
⬅ Kembali
"use strict";
var wp;
(wp ||= {}).keycodes = (() => {
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __commonJS = (cb, mod) => function __require() {
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
};
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 __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// package-external:@wordpress/i18n
var require_i18n = __commonJS({
"package-external:@wordpress/i18n"(exports, module) {
module.exports = window.wp.i18n;
}
});
// packages/keycodes/build-module/index.mjs
var index_exports = {};
__export(index_exports, {
ALT: () => ALT,
BACKSPACE: () => BACKSPACE,
COMMAND: () => COMMAND,
CTRL: () => CTRL,
DELETE: () => DELETE,
DOWN: () => DOWN,
END: () => END,
ENTER: () => ENTER,
ESCAPE: () => ESCAPE,
F10: () => F10,
HOME: () => HOME,
LEFT: () => LEFT,
PAGEDOWN: () => PAGEDOWN,
PAGEUP: () => PAGEUP,
RIGHT: () => RIGHT,
SHIFT: () => SHIFT,
SPACE: () => SPACE,
TAB: () => TAB,
UP: () => UP,
ZERO: () => ZERO,
ariaKeyShortcut: () => ariaKeyShortcut,
displayShortcut: () => displayShortcut,
displayShortcutList: () => displayShortcutList,
isAppleOS: () => isAppleOS,
isKeyboardEvent: () => isKeyboardEvent,
modifiers: () => modifiers,
rawShortcut: () => rawShortcut,
shortcutAriaLabel: () => shortcutAriaLabel
});
var import_i18n = __toESM(require_i18n(), 1);
// packages/keycodes/build-module/platform.mjs
function isAppleOS(_window) {
if (!_window) {
if (typeof window === "undefined") {
return false;
}
_window = window;
}
const { platform } = _window.navigator;
return platform.indexOf("Mac") !== -1 || ["iPad", "iPhone"].includes(platform);
}
// packages/keycodes/build-module/index.mjs
var BACKSPACE = 8;
var TAB = 9;
var ENTER = 13;
var ESCAPE = 27;
var SPACE = 32;
var PAGEUP = 33;
var PAGEDOWN = 34;
var END = 35;
var HOME = 36;
var LEFT = 37;
var UP = 38;
var RIGHT = 39;
var DOWN = 40;
var DELETE = 46;
var F10 = 121;
var ALT = "alt";
var CTRL = "ctrl";
var COMMAND = "meta";
var SHIFT = "shift";
var ZERO = 48;
function capitaliseFirstCharacter(string) {
return string.length < 2 ? string.toUpperCase() : string.charAt(0).toUpperCase() + string.slice(1);
}
function mapValues(object, mapFn) {
return Object.fromEntries(
Object.entries(object).map(([key, value]) => [
key,
mapFn(value)
])
);
}
var modifiers = {
primary: (_isApple) => _isApple() ? [COMMAND] : [CTRL],
primaryShift: (_isApple) => _isApple() ? [SHIFT, COMMAND] : [CTRL, SHIFT],
primaryAlt: (_isApple) => _isApple() ? [ALT, COMMAND] : [CTRL, ALT],
secondary: (_isApple) => _isApple() ? [SHIFT, ALT, COMMAND] : [CTRL, SHIFT, ALT],
access: (_isApple) => _isApple() ? [CTRL, ALT] : [SHIFT, ALT],
ctrl: () => [CTRL],
alt: () => [ALT],
ctrlShift: () => [CTRL, SHIFT],
shift: () => [SHIFT],
shiftAlt: () => [SHIFT, ALT],
undefined: () => []
};
var rawShortcut = /* @__PURE__ */ mapValues(modifiers, (modifier) => {
return (character, _isApple = isAppleOS) => {
return [...modifier(_isApple), character.toLowerCase()].join(
"+"
);
};
});
var ariaKeyShortcut = /* @__PURE__ */ mapValues(modifiers, (modifier) => {
return (character, _isApple = isAppleOS) => {
return [
...modifier(_isApple).map((key) => key === CTRL ? "Control" : key).map((key) => capitaliseFirstCharacter(key)),
capitaliseFirstCharacter(character)
].join("+");
};
});
var displayShortcutList = /* @__PURE__ */ mapValues(
modifiers,
(modifier) => {
return (character, _isApple = isAppleOS) => {
const isApple = _isApple();
const replacementKeyMap = {
[ALT]: isApple ? "\u2325" : "Alt",
[CTRL]: isApple ? "\u2303" : "Ctrl",
// Make sure ⌃ is the U+2303 UP ARROWHEAD unicode character and not the caret character.
[COMMAND]: "\u2318",
[SHIFT]: isApple ? "\u21E7" : "Shift"
};
const modifierKeys = modifier(_isApple).reduce(
(accumulator, key) => {
const replacementKey = replacementKeyMap[key] ?? key;
if (isApple) {
return [...accumulator, replacementKey];
}
return [...accumulator, replacementKey, "+"];
},
[]
);
return [
...modifierKeys,
capitaliseFirstCharacter(character)
];
};
}
);
var displayShortcut = /* @__PURE__ */ mapValues(
displayShortcutList,
(shortcutList) => {
return (character, _isApple = isAppleOS) => shortcutList(character, _isApple).join("");
}
);
var shortcutAriaLabel = /* @__PURE__ */ mapValues(modifiers, (modifier) => {
return (character, _isApple = isAppleOS) => {
const isApple = _isApple();
const replacementKeyMap = {
[SHIFT]: "Shift",
[COMMAND]: isApple ? "Command" : "Control",
[CTRL]: "Control",
[ALT]: isApple ? "Option" : "Alt",
/* translators: comma as in the character ',' */
",": (0, import_i18n.__)("Comma"),
/* translators: period as in the character '.' */
".": (0, import_i18n.__)("Period"),
/* translators: backtick as in the character '`' */
"`": (0, import_i18n.__)("Backtick"),
/* translators: tilde as in the character '~' */
"~": (0, import_i18n.__)("Tilde")
};
return [...modifier(_isApple), character].map(
(key) => capitaliseFirstCharacter(replacementKeyMap[key] ?? key)
).join(isApple ? " " : " + ");
};
});
function getEventModifiers(event) {
return [ALT, CTRL, COMMAND, SHIFT].filter(
(key) => event[`${key}Key`]
);
}
var isKeyboardEvent = /* @__PURE__ */ mapValues(modifiers, (getModifiers) => {
return (event, character, _isApple = isAppleOS) => {
const mods = getModifiers(_isApple);
const eventMods = getEventModifiers(event);
const replacementWithShiftKeyMap = {
Comma: ",",
Backslash: "\\",
// Windows returns `\` for both IntlRo and IntlYen.
IntlRo: "\\",
IntlYen: "\\"
};
const modsDiff = mods.filter(
(mod) => !eventMods.includes(mod)
);
const eventModsDiff = eventMods.filter(
(mod) => !mods.includes(mod)
);
if (modsDiff.length > 0 || eventModsDiff.length > 0) {
return false;
}
let key = event.key.toLowerCase();
if (!character) {
return mods.includes(key);
}
if (event.altKey && character.length === 1) {
key = String.fromCharCode(event.keyCode).toLowerCase();
}
if (event.shiftKey && character.length === 1 && replacementWithShiftKeyMap[event.code]) {
key = replacementWithShiftKeyMap[event.code];
}
if (character === "del") {
character = "delete";
}
return key === character.toLowerCase();
};
});
return __toCommonJS(index_exports);
})();
Nama
Tipe
Ukuran
Diubah
Aksi
📁 development
dir
—
2026-06-20 08:29
📁 script-modules
dir
—
2026-06-20 08:29
📁 vendor
dir
—
2026-06-20 08:29
📜 a11y.js
js
5.5 KB
2026-05-20 20:16
📜 a11y.min.js
js
2.4 KB
2026-05-20 20:16
📜 annotations.js
js
15.1 KB
2026-05-20 20:16
📜 annotations.min.js
js
5.6 KB
2026-05-20 20:16
📜 api-fetch.js
js
17.5 KB
2026-05-20 20:16
📜 api-fetch.min.js
js
6.3 KB
2026-05-20 20:16
📜 autop.js
js
9.7 KB
2026-05-20 20:16
📜 autop.min.js
js
5.5 KB
2026-05-20 20:16
📜 base-styles.js
js
48 B
2026-05-20 20:16
📜 base-styles.min.js
js
40 B
2026-05-20 20:16
📜 blob.js
js
2.3 KB
2026-05-20 20:16
📜 blob.min.js
js
1.1 KB
2026-05-20 20:16
📜 block-directory.js
js
55.7 KB
2026-05-20 20:16
📜 block-directory.min.js
js
21.9 KB
2026-05-20 20:16
📜 block-editor.js
js
2.7 MB
2026-05-20 20:16
📜 block-editor.min.js
js
1 MB
2026-05-20 20:16
📜 block-library.js
js
2.6 MB
2026-05-20 20:16
📜 block-library.min.js
js
1.1 MB
2026-05-20 20:16
📜 block-serialization-default-parser.js
js
6.5 KB
2026-05-20 20:16
📜 block-serialization-default-parser.min.js
js
2.4 KB
2026-05-20 20:16
📜 block-serialization-spec-parser.js
js
50.5 KB
2026-05-20 20:16
📜 block-serialization-spec-parser.min.js
js
10.3 KB
2026-05-20 20:16
📜 blocks.js
js
381.1 KB
2026-05-20 20:16
📜 blocks.min.js
js
180.6 KB
2026-05-20 20:16
📜 commands.js
js
151.7 KB
2026-05-20 20:16
📜 commands.min.js
js
63.1 KB
2026-05-20 20:16
📜 components.js
js
3.8 MB
2026-05-20 20:16
📜 components.min.js
js
786.2 KB
2026-05-20 20:16
📜 compose.js
js
80.8 KB
2026-05-20 20:16
📜 compose.min.js
js
28.2 KB
2026-05-20 20:16
📜 core-commands.js
js
28.7 KB
2026-05-20 20:16
📜 core-commands.min.js
js
11.8 KB
2026-05-20 20:16
📜 core-data.js
js
612 KB
2026-05-20 20:16
📜 core-data.min.js
js
210.4 KB
2026-05-20 20:16
📜 customize-widgets.js
js
91.6 KB
2026-05-20 20:16
📜 customize-widgets.min.js
js
36.6 KB
2026-05-20 20:16
📜 data-controls.js
js
4.1 KB
2026-05-20 20:16
📜 data-controls.min.js
js
1.7 KB
2026-05-20 20:16
📜 data.js
js
82.8 KB
2026-05-20 20:16
📜 data.min.js
js
25.9 KB
2026-05-20 20:16
📜 date.js
js
176.3 KB
2026-05-20 20:16
📜 date.min.js
js
141.2 KB
2026-05-20 20:16
📜 deprecated.js
js
3 KB
2026-05-20 20:16
📜 deprecated.min.js
js
1.3 KB
2026-05-20 20:16
📜 dom-ready.js
js
1.5 KB
2026-05-20 20:16
📜 dom-ready.min.js
js
783 B
2026-05-20 20:16
📜 dom.js
js
34.6 KB
2026-05-20 20:16
📜 dom.min.js
js
12.6 KB
2026-05-20 20:16
📜 edit-post.js
js
117.4 KB
2026-05-20 20:16
📜 edit-post.min.js
js
49.1 KB
2026-05-20 20:16
📜 edit-site.js
js
1.7 MB
2026-05-20 20:16
📜 edit-site.min.js
js
684.4 KB
2026-05-20 20:16
📜 edit-widgets.js
js
160.2 KB
2026-05-20 20:16
📜 edit-widgets.min.js
js
61.8 KB
2026-05-20 20:16
📜 editor.js
js
2.5 MB
2026-05-20 20:16
📜 editor.min.js
js
1021.2 KB
2026-05-20 20:16
📜 element.js
js
27.9 KB
2026-05-20 20:16
📜 element.min.js
js
12.1 KB
2026-05-20 20:16
📜 escape-html.js
js
2.3 KB
2026-05-20 20:16
📜 escape-html.min.js
js
1 KB
2026-05-20 20:16
📜 format-library.js
js
73.3 KB
2026-05-20 20:16
📜 format-library.min.js
js
28.8 KB
2026-05-20 20:16
📜 hooks.js
js
12 KB
2026-05-20 20:16
📜 hooks.min.js
js
4.9 KB
2026-05-20 20:16
📜 html-entities.js
js
1.6 KB
2026-05-20 20:16
📜 html-entities.min.js
js
844 B
2026-05-20 20:16
📜 i18n.js
js
15.3 KB
2026-05-20 20:16
📜 i18n.min.js
js
5.6 KB
2026-05-20 20:16
📜 is-shallow-equal.js
js
2.7 KB
2026-05-20 20:16
📜 is-shallow-equal.min.js
js
1.1 KB
2026-05-20 20:16
📜 keyboard-shortcuts.js
js
9.7 KB
2026-05-20 20:16
📜 keyboard-shortcuts.min.js
js
3.4 KB
2026-05-20 20:16
📜 keycodes.js
js
8.3 KB
2026-05-20 20:16
📜 keycodes.min.js
js
2.9 KB
2026-05-20 20:16
📜 list-reusable-blocks.js
js
13.1 KB
2026-05-20 20:16
📜 list-reusable-blocks.min.js
js
5.2 KB
2026-05-20 20:16
📜 media-utils.js
js
637.1 KB
2026-05-20 20:16
📜 media-utils.min.js
js
237.6 KB
2026-05-20 20:16
📜 notices.js
js
10.1 KB
2026-05-20 20:16
📜 notices.min.js
js
4.3 KB
2026-05-20 20:16
📜 nux.js
js
10.3 KB
2026-05-20 20:16
📜 nux.min.js
js
3.9 KB
2026-05-20 20:16
📜 patterns.js
js
58.2 KB
2026-05-20 20:16
📜 patterns.min.js
js
21.6 KB
2026-05-20 20:16
📜 plugins.js
js
11.7 KB
2026-05-20 20:16
📜 plugins.min.js
js
4.7 KB
2026-05-20 20:16
📜 preferences-persistence.js
js
17.2 KB
2026-05-20 20:16
📜 preferences-persistence.min.js
js
5.5 KB
2026-05-20 20:16
📜 preferences.js
js
21.1 KB
2026-05-20 20:16
📜 preferences.min.js
js
7.7 KB
2026-05-20 20:16
📜 primitives.js
js
5.1 KB
2026-05-20 20:16
📜 primitives.min.js
js
1.9 KB
2026-05-20 20:16
📜 priority-queue.js
js
10 KB
2026-05-20 20:16
📜 priority-queue.min.js
js
3.3 KB
2026-05-20 20:16
📜 private-apis.js
js
4.1 KB
2026-05-20 20:16
📜 private-apis.min.js
js
2.6 KB
2026-05-20 20:16
📜 react-i18n.js
js
3.9 KB
2026-05-20 20:16
📜 react-i18n.min.js
js
1.5 KB
2026-05-20 20:16
📜 redux-routine.js
js
24.7 KB
2026-05-20 20:16
📜 redux-routine.min.js
js
9.6 KB
2026-05-20 20:16
📜 reusable-blocks.js
js
20.5 KB
2026-05-20 20:16
📜 reusable-blocks.min.js
js
7.2 KB
2026-05-20 20:16
📜 rich-text.js
js
97 KB
2026-05-20 20:16
📜 rich-text.min.js
js
39.9 KB
2026-05-20 20:16
📜 router.js
js
36.1 KB
2026-05-20 20:16
📜 router.min.js
js
14.1 KB
2026-05-20 20:16
📜 server-side-render.js
js
11 KB
2026-05-20 20:16
📜 server-side-render.min.js
js
3.9 KB
2026-05-20 20:16
📜 shortcode.js
js
8 KB
2026-05-20 20:16
📜 shortcode.min.js
js
3.2 KB
2026-05-20 20:16
📜 style-engine.js
js
17.6 KB
2026-05-20 20:16
📜 style-engine.min.js
js
6.4 KB
2026-05-20 20:16
📜 sync.js
js
359.4 KB
2026-05-20 20:16
📜 sync.min.js
js
118.1 KB
2026-05-20 20:16
📜 theme.js
js
127.6 KB
2026-05-20 20:16
📜 theme.min.js
js
56.1 KB
2026-05-20 20:16
📜 token-list.js
js
6.1 KB
2026-05-20 20:16
📜 token-list.min.js
js
1.6 KB
2026-05-20 20:16
📜 undo-manager.js
js
5.3 KB
2026-05-20 20:16
📜 undo-manager.min.js
js
1.7 KB
2026-05-20 20:16
📜 upload-media.js
js
55.7 KB
2026-05-20 20:16
📜 upload-media.min.js
js
23 KB
2026-05-20 20:16
📜 url.js
js
23.4 KB
2026-05-20 20:16
📜 url.min.js
js
10.1 KB
2026-05-20 20:16
📜 viewport.js
js
6.6 KB
2026-05-20 20:16
📜 viewport.min.js
js
2.2 KB
2026-05-20 20:16
📜 warning.js
js
1.5 KB
2026-05-20 20:16
📜 warning.min.js
js
720 B
2026-05-20 20:16
📜 widgets.js
js
50.1 KB
2026-05-20 20:16
📜 widgets.min.js
js
20.8 KB
2026-05-20 20:16
📜 wordcount.js
js
6.9 KB
2026-05-20 20:16
📜 wordcount.min.js
js
2.4 KB
2026-05-20 20:16