mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
23 lines
460 B
JavaScript
23 lines
460 B
JavaScript
/**
|
|
* The built in string object.
|
|
* @external {String}
|
|
* @see {@link https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String String}
|
|
*/
|
|
|
|
/**
|
|
* Adds a new method to the built-in string.
|
|
* @function external:String#rot13
|
|
* @example
|
|
* var greeting = new String('hello world');
|
|
* console.log( greeting.rot13() ); // uryyb jbeyq
|
|
*/
|
|
|
|
/**
|
|
* @external {foo.bar.baz}
|
|
*/
|
|
|
|
/**
|
|
* Blah blah
|
|
* @function external:foo.bar.baz#blah
|
|
*/
|