From ae57052452cb297ea5f6d4435b21306e98b7b545 Mon Sep 17 00:00:00 2001 From: Peli Date: Wed, 22 Jan 2020 12:19:13 -0800 Subject: [PATCH] updated scripts --- libs/core/_locales/core-jsdoc-strings.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libs/core/_locales/core-jsdoc-strings.json b/libs/core/_locales/core-jsdoc-strings.json index b3e2b5e0..623e7e30 100644 --- a/libs/core/_locales/core-jsdoc-strings.json +++ b/libs/core/_locales/core-jsdoc-strings.json @@ -195,11 +195,17 @@ "String.indexOf|param|start": "optional start index for the search", "String.isEmpty": "Returns a value indicating if the string is empty", "String.length": "Returns the length of a String object.", + "String.replace": "Return the current string with the first occurence of toReplace\nreplaced with the replacer\n\n\nor a function that accepts the substring and returns the replacement string.", + "String.replaceAll": "Return the current string with each occurence of toReplace\nreplaced with the replacer\n\n\nor a function that accepts the substring and returns the replacement string.", + "String.replaceAll|param|replacer": "either the string that replaces toReplace in the current string,", + "String.replaceAll|param|toReplace": "the substring to replace in the current string", + "String.replace|param|replacer": "either the string that replaces toReplace in the current string,", + "String.replace|param|toReplace": "the substring to replace in the current string", "String.slice": "Return a substring of the current string.", "String.slice|param|end": "one-past-last character index", "String.slice|param|start": "first character index; can be negative from counting from the end, eg:0", "String.split": "Splits the string according to the separators", - "String.split|param|separator": "@param limit ", + "String.split|param|separator": "@param limit", "String.substr": "Return a substring of the current string.", "String.substr|param|length": "number of characters to extract", "String.substr|param|start": "first character index; can be negative from counting from the end, eg:0",