outdent-umd

A UMD build of outdent

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.gf.qytechs.cn/scripts/528322/1544565/outdent-umd.js

  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
  3. typeof define === 'function' && define.amd ? define(factory) :
  4. (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.outdent = factory());
  5. })(this, (function () { 'use strict';
  6.  
  7. // In the absence of a WeakSet or WeakMap implementation, don't break, but don't cache either.
  8. function noop() {
  9. }
  10. function createWeakMap() {
  11. if (typeof WeakMap !== "undefined") {
  12. return new WeakMap();
  13. }
  14. else {
  15. return fakeSetOrMap();
  16. }
  17. }
  18. /**
  19. * Creates and returns a no-op implementation of a WeakMap / WeakSet that never stores anything.
  20. */
  21. function fakeSetOrMap() {
  22. return {
  23. add: noop,
  24. delete: noop,
  25. get: noop,
  26. set: noop,
  27. has: function (k) {
  28. return false;
  29. },
  30. };
  31. }
  32. // Safe hasOwnProperty
  33. var hop = Object.prototype.hasOwnProperty;
  34. var has = function (obj, prop) {
  35. return hop.call(obj, prop);
  36. };
  37. // Copy all own enumerable properties from source to target
  38. function extend(target, source) {
  39. for (var prop in source) {
  40. if (has(source, prop)) {
  41. target[prop] = source[prop];
  42. }
  43. }
  44. return target;
  45. }
  46. var reLeadingNewline = /^[ \t]*(?:\r\n|\r|\n)/;
  47. var reTrailingNewline = /(?:\r\n|\r|\n)[ \t]*$/;
  48. var reStartsWithNewlineOrIsEmpty = /^(?:[\r\n]|$)/;
  49. var reDetectIndentation = /(?:\r\n|\r|\n)([ \t]*)(?:[^ \t\r\n]|$)/;
  50. var reOnlyWhitespaceWithAtLeastOneNewline = /^[ \t]*[\r\n][ \t\r\n]*$/;
  51. function _outdentArray(strings, firstInterpolatedValueSetsIndentationLevel, options) {
  52. // If first interpolated value is a reference to outdent,
  53. // determine indentation level from the indentation of the interpolated value.
  54. var indentationLevel = 0;
  55. var match = strings[0].match(reDetectIndentation);
  56. if (match) {
  57. indentationLevel = match[1].length;
  58. }
  59. var reSource = "(\\r\\n|\\r|\\n).{0," + indentationLevel + "}";
  60. var reMatchIndent = new RegExp(reSource, "g");
  61. if (firstInterpolatedValueSetsIndentationLevel) {
  62. strings = strings.slice(1);
  63. }
  64. var newline = options.newline, trimLeadingNewline = options.trimLeadingNewline, trimTrailingNewline = options.trimTrailingNewline;
  65. var normalizeNewlines = typeof newline === "string";
  66. var l = strings.length;
  67. var outdentedStrings = strings.map(function (v, i) {
  68. // Remove leading indentation from all lines
  69. v = v.replace(reMatchIndent, "$1");
  70. // Trim a leading newline from the first string
  71. if (i === 0 && trimLeadingNewline) {
  72. v = v.replace(reLeadingNewline, "");
  73. }
  74. // Trim a trailing newline from the last string
  75. if (i === l - 1 && trimTrailingNewline) {
  76. v = v.replace(reTrailingNewline, "");
  77. }
  78. // Normalize newlines
  79. if (normalizeNewlines) {
  80. v = v.replace(/\r\n|\n|\r/g, function (_) { return newline; });
  81. }
  82. return v;
  83. });
  84. return outdentedStrings;
  85. }
  86. function concatStringsAndValues(strings, values) {
  87. var ret = "";
  88. for (var i = 0, l = strings.length; i < l; i++) {
  89. ret += strings[i];
  90. if (i < l - 1) {
  91. ret += values[i];
  92. }
  93. }
  94. return ret;
  95. }
  96. function isTemplateStringsArray(v) {
  97. return has(v, "raw") && has(v, "length");
  98. }
  99. /**
  100. * It is assumed that opts will not change. If this is a problem, clone your options object and pass the clone to
  101. * makeInstance
  102. * @param options
  103. * @return {outdent}
  104. */
  105. function createInstance(options) {
  106. /** Cache of pre-processed template literal arrays */
  107. var arrayAutoIndentCache = createWeakMap();
  108. /**
  109. * Cache of pre-processed template literal arrays, where first interpolated value is a reference to outdent,
  110. * before interpolated values are injected.
  111. */
  112. var arrayFirstInterpSetsIndentCache = createWeakMap();
  113. function outdent(stringsOrOptions) {
  114. var values = [];
  115. for (var _i = 1; _i < arguments.length; _i++) {
  116. values[_i - 1] = arguments[_i];
  117. }
  118. /* tslint:enable:no-shadowed-variable */
  119. if (isTemplateStringsArray(stringsOrOptions)) {
  120. var strings = stringsOrOptions;
  121. // Is first interpolated value a reference to outdent, alone on its own line, without any preceding non-whitespace?
  122. var firstInterpolatedValueSetsIndentationLevel = (values[0] === outdent || values[0] === defaultOutdent) &&
  123. reOnlyWhitespaceWithAtLeastOneNewline.test(strings[0]) &&
  124. reStartsWithNewlineOrIsEmpty.test(strings[1]);
  125. // Perform outdentation
  126. var cache = firstInterpolatedValueSetsIndentationLevel
  127. ? arrayFirstInterpSetsIndentCache
  128. : arrayAutoIndentCache;
  129. var renderedArray = cache.get(strings);
  130. if (!renderedArray) {
  131. renderedArray = _outdentArray(strings, firstInterpolatedValueSetsIndentationLevel, options);
  132. cache.set(strings, renderedArray);
  133. }
  134. /** If no interpolated values, skip concatenation step */
  135. if (values.length === 0) {
  136. return renderedArray[0];
  137. }
  138. /** Concatenate string literals with interpolated values */
  139. var rendered = concatStringsAndValues(renderedArray, firstInterpolatedValueSetsIndentationLevel ? values.slice(1) : values);
  140. return rendered;
  141. }
  142. else {
  143. // Create and return a new instance of outdent with the given options
  144. return createInstance(extend(extend({}, options), stringsOrOptions || {}));
  145. }
  146. }
  147. var fullOutdent = extend(outdent, {
  148. string: function (str) {
  149. return _outdentArray([str], false, options)[0];
  150. },
  151. });
  152. return fullOutdent;
  153. }
  154. var defaultOutdent = createInstance({
  155. trimLeadingNewline: true,
  156. trimTrailingNewline: true,
  157. });
  158. // import {outdent} from 'outdent';
  159. // export { defaultOutdent as outdent };
  160. if (typeof module !== "undefined") {
  161. // In webpack harmony-modules environments, module.exports is read-only,
  162. // so we fail gracefully.
  163. try {
  164. module.exports = defaultOutdent;
  165. Object.defineProperty(defaultOutdent, "__esModule", { value: true });
  166. defaultOutdent.default = defaultOutdent;
  167. defaultOutdent.outdent = defaultOutdent;
  168. }
  169. catch (e) { }
  170. }
  171.  
  172. return defaultOutdent;
  173.  
  174. }));

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址