shared.prod.cjs 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. /*!
  2. * shared v9.13.1
  3. * (c) 2024 kazuya kawaguchi
  4. * Released under the MIT License.
  5. */
  6. 'use strict';
  7. /**
  8. * Original Utilities
  9. * written by kazuya kawaguchi
  10. */
  11. const inBrowser = typeof window !== 'undefined';
  12. let mark;
  13. let measure;
  14. const RE_ARGS = /\{([0-9a-zA-Z]+)\}/g;
  15. /* eslint-disable */
  16. function format(message, ...args) {
  17. if (args.length === 1 && isObject(args[0])) {
  18. args = args[0];
  19. }
  20. if (!args || !args.hasOwnProperty) {
  21. args = {};
  22. }
  23. return message.replace(RE_ARGS, (match, identifier) => {
  24. return args.hasOwnProperty(identifier) ? args[identifier] : '';
  25. });
  26. }
  27. const makeSymbol = (name, shareable = false) => !shareable ? Symbol(name) : Symbol.for(name);
  28. const generateFormatCacheKey = (locale, key, source) => friendlyJSONstringify({ l: locale, k: key, s: source });
  29. const friendlyJSONstringify = (json) => JSON.stringify(json)
  30. .replace(/\u2028/g, '\\u2028')
  31. .replace(/\u2029/g, '\\u2029')
  32. .replace(/\u0027/g, '\\u0027');
  33. const isNumber = (val) => typeof val === 'number' && isFinite(val);
  34. const isDate = (val) => toTypeString(val) === '[object Date]';
  35. const isRegExp = (val) => toTypeString(val) === '[object RegExp]';
  36. const isEmptyObject = (val) => isPlainObject(val) && Object.keys(val).length === 0;
  37. const assign = Object.assign;
  38. let _globalThis;
  39. const getGlobalThis = () => {
  40. // prettier-ignore
  41. return (_globalThis ||
  42. (_globalThis =
  43. typeof globalThis !== 'undefined'
  44. ? globalThis
  45. : typeof self !== 'undefined'
  46. ? self
  47. : typeof window !== 'undefined'
  48. ? window
  49. : typeof global !== 'undefined'
  50. ? global
  51. : {}));
  52. };
  53. function escapeHtml(rawText) {
  54. return rawText
  55. .replace(/</g, '&lt;')
  56. .replace(/>/g, '&gt;')
  57. .replace(/"/g, '&quot;')
  58. .replace(/'/g, '&apos;');
  59. }
  60. const hasOwnProperty = Object.prototype.hasOwnProperty;
  61. function hasOwn(obj, key) {
  62. return hasOwnProperty.call(obj, key);
  63. }
  64. /* eslint-enable */
  65. /**
  66. * Useful Utilities By Evan you
  67. * Modified by kazuya kawaguchi
  68. * MIT License
  69. * https://github.com/vuejs/vue-next/blob/master/packages/shared/src/index.ts
  70. * https://github.com/vuejs/vue-next/blob/master/packages/shared/src/codeframe.ts
  71. */
  72. const isArray = Array.isArray;
  73. const isFunction = (val) => typeof val === 'function';
  74. const isString = (val) => typeof val === 'string';
  75. const isBoolean = (val) => typeof val === 'boolean';
  76. const isSymbol = (val) => typeof val === 'symbol';
  77. // eslint-disable-next-line @typescript-eslint/no-explicit-any
  78. const isObject = (val) => val !== null && typeof val === 'object';
  79. // eslint-disable-next-line @typescript-eslint/no-explicit-any
  80. const isPromise = (val) => {
  81. return isObject(val) && isFunction(val.then) && isFunction(val.catch);
  82. };
  83. const objectToString = Object.prototype.toString;
  84. const toTypeString = (value) => objectToString.call(value);
  85. const isPlainObject = (val) => {
  86. if (!isObject(val))
  87. return false;
  88. const proto = Object.getPrototypeOf(val);
  89. return proto === null || proto.constructor === Object;
  90. };
  91. // for converting list and named values to displayed strings.
  92. const toDisplayString = (val) => {
  93. return val == null
  94. ? ''
  95. : isArray(val) || (isPlainObject(val) && val.toString === objectToString)
  96. ? JSON.stringify(val, null, 2)
  97. : String(val);
  98. };
  99. function join(items, separator = '') {
  100. return items.reduce((str, item, index) => (index === 0 ? str + item : str + separator + item), '');
  101. }
  102. const RANGE = 2;
  103. function generateCodeFrame(source, start = 0, end = source.length) {
  104. const lines = source.split(/\r?\n/);
  105. let count = 0;
  106. const res = [];
  107. for (let i = 0; i < lines.length; i++) {
  108. count += lines[i].length + 1;
  109. if (count >= start) {
  110. for (let j = i - RANGE; j <= i + RANGE || end > count; j++) {
  111. if (j < 0 || j >= lines.length)
  112. continue;
  113. const line = j + 1;
  114. res.push(`${line}${' '.repeat(3 - String(line).length)}| ${lines[j]}`);
  115. const lineLength = lines[j].length;
  116. if (j === i) {
  117. // push underline
  118. const pad = start - (count - lineLength) + 1;
  119. const length = Math.max(1, end > count ? lineLength - pad : end - start);
  120. res.push(` | ` + ' '.repeat(pad) + '^'.repeat(length));
  121. }
  122. else if (j > i) {
  123. if (end > count) {
  124. const length = Math.max(Math.min(end - count, lineLength), 1);
  125. res.push(` | ` + '^'.repeat(length));
  126. }
  127. count += lineLength + 1;
  128. }
  129. }
  130. break;
  131. }
  132. }
  133. return res.join('\n');
  134. }
  135. function incrementer(code) {
  136. let current = code;
  137. return () => ++current;
  138. }
  139. function warn(msg, err) {
  140. if (typeof console !== 'undefined') {
  141. console.warn(`[intlify] ` + msg);
  142. /* istanbul ignore if */
  143. if (err) {
  144. console.warn(err.stack);
  145. }
  146. }
  147. }
  148. const hasWarned = {};
  149. function warnOnce(msg) {
  150. if (!hasWarned[msg]) {
  151. hasWarned[msg] = true;
  152. warn(msg);
  153. }
  154. }
  155. /**
  156. * Event emitter, forked from the below:
  157. * - original repository url: https://github.com/developit/mitt
  158. * - code url: https://github.com/developit/mitt/blob/master/src/index.ts
  159. * - author: Jason Miller (https://github.com/developit)
  160. * - license: MIT
  161. */
  162. /**
  163. * Create a event emitter
  164. *
  165. * @returns An event emitter
  166. */
  167. function createEmitter() {
  168. const events = new Map();
  169. const emitter = {
  170. events,
  171. on(event, handler) {
  172. const handlers = events.get(event);
  173. const added = handlers && handlers.push(handler);
  174. if (!added) {
  175. events.set(event, [handler]);
  176. }
  177. },
  178. off(event, handler) {
  179. const handlers = events.get(event);
  180. if (handlers) {
  181. handlers.splice(handlers.indexOf(handler) >>> 0, 1);
  182. }
  183. },
  184. emit(event, payload) {
  185. (events.get(event) || [])
  186. .slice()
  187. .map(handler => handler(payload));
  188. (events.get('*') || [])
  189. .slice()
  190. .map(handler => handler(event, payload));
  191. }
  192. };
  193. return emitter;
  194. }
  195. const isNotObjectOrIsArray = (val) => !isObject(val) || isArray(val);
  196. // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/explicit-module-boundary-types
  197. function deepCopy(src, des) {
  198. // src and des should both be objects, and none of them can be a array
  199. if (isNotObjectOrIsArray(src) || isNotObjectOrIsArray(des)) {
  200. throw new Error('Invalid value');
  201. }
  202. const stack = [{ src, des }];
  203. while (stack.length) {
  204. const { src, des } = stack.pop();
  205. Object.keys(src).forEach(key => {
  206. if (isNotObjectOrIsArray(src[key]) || isNotObjectOrIsArray(des[key])) {
  207. // replace with src[key] when:
  208. // src[key] or des[key] is not an object, or
  209. // src[key] or des[key] is an array
  210. des[key] = src[key];
  211. }
  212. else {
  213. // src[key] and des[key] are both objects, merge them
  214. stack.push({ src: src[key], des: des[key] });
  215. }
  216. });
  217. }
  218. }
  219. exports.assign = assign;
  220. exports.createEmitter = createEmitter;
  221. exports.deepCopy = deepCopy;
  222. exports.escapeHtml = escapeHtml;
  223. exports.format = format;
  224. exports.friendlyJSONstringify = friendlyJSONstringify;
  225. exports.generateCodeFrame = generateCodeFrame;
  226. exports.generateFormatCacheKey = generateFormatCacheKey;
  227. exports.getGlobalThis = getGlobalThis;
  228. exports.hasOwn = hasOwn;
  229. exports.inBrowser = inBrowser;
  230. exports.incrementer = incrementer;
  231. exports.isArray = isArray;
  232. exports.isBoolean = isBoolean;
  233. exports.isDate = isDate;
  234. exports.isEmptyObject = isEmptyObject;
  235. exports.isFunction = isFunction;
  236. exports.isNumber = isNumber;
  237. exports.isObject = isObject;
  238. exports.isPlainObject = isPlainObject;
  239. exports.isPromise = isPromise;
  240. exports.isRegExp = isRegExp;
  241. exports.isString = isString;
  242. exports.isSymbol = isSymbol;
  243. exports.join = join;
  244. exports.makeSymbol = makeSymbol;
  245. exports.mark = mark;
  246. exports.measure = measure;
  247. exports.objectToString = objectToString;
  248. exports.toDisplayString = toDisplayString;
  249. exports.toTypeString = toTypeString;
  250. exports.warn = warn;
  251. exports.warnOnce = warnOnce;