Commit b367f485 authored by Nick Poulden's avatar Nick Poulden
Browse files

Global JS class licence info

parent 7e0769a4
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -132,6 +132,11 @@
 * | `[1], ...[n]`    | Read-only elements that specify the parenthesized substring matches, if included in   | [1]: bB [2]: d
 * |                  | the regular expression. The number of possible parenthesized substrings is unlimited. |
 *
 * <div class="notice">
 * Documentation for this class comes from <a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array">MDN</a>
 * and is available under <a href="http://creativecommons.org/licenses/by-sa/2.0/">Creative Commons: Attribution-Sharealike license</a>.
 * </div>
 *
 */

/**
+4 −0
Original line number Diff line number Diff line
@@ -58,6 +58,10 @@
 *     bfalseString = new Boolean("false");
 *     bSuLin = new Boolean("Su Lin");
 *
 * <div class="notice">
 * Documentation for this class comes from <a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Boolean">MDN</a>
 * and is available under <a href="http://creativecommons.org/licenses/by-sa/2.0/">Creative Commons: Attribution-Sharealike license</a>.
 * </div>
 */

/**
+5 −0
Original line number Diff line number Diff line
@@ -81,6 +81,11 @@
 *
 *     var d = new Date();
 *     print(ISODateString(d)); // prints something like 2009-09-28T19:03:12Z
 *
 * <div class="notice">
 * Documentation for this class comes from <a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date">MDN</a>
 * and is available under <a href="http://creativecommons.org/licenses/by-sa/2.0/">Creative Commons: Attribution-Sharealike license</a>.
 * </div>
 */

/**
+5 −0
Original line number Diff line number Diff line
@@ -31,6 +31,11 @@
 *
 * The arguments "a" and "b" are formal argument names that are used in the
 * function body, "return a + b".
 *
 * <div class="notice">
 * Documentation for this class comes from <a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function">MDN</a>
 * and is available under <a href="http://creativecommons.org/licenses/by-sa/2.0/">Creative Commons: Attribution-Sharealike license</a>.
 * </div>
 */

/**
+5 −0
Original line number Diff line number Diff line
@@ -33,6 +33,11 @@
 *
 * The following example converts the Date object to a numerical value using
 * `Number` as a function:
 *
 * <div class="notice">
 * Documentation for this class comes from <a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Number">MDN</a>
 * and is available under <a href="http://creativecommons.org/licenses/by-sa/2.0/">Creative Commons: Attribution-Sharealike license</a>.
 * </div>
 */

/**
Loading