59408d34c4c030c9f0e1df4a1c8e0f53800de3d86c1b4cc0aee18327b92d00df.json 622 B

1
  1. {"ast":null,"code":"/** Used to match a single whitespace character. */\nvar reWhitespace = /\\s/;\n\n/**\n * Used by `_.trim` and `_.trimEnd` to get the index of the last non-whitespace\n * character of `string`.\n *\n * @private\n * @param {string} string The string to inspect.\n * @returns {number} Returns the index of the last non-whitespace character.\n */\nfunction trimmedEndIndex(string) {\n var index = string.length;\n while (index-- && reWhitespace.test(string.charAt(index))) {}\n return index;\n}\nexport default trimmedEndIndex;","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}