YourLibrary

YourLibrary

new YourLibrary()

Description of your library

Source:

Methods

(static) init(options) → {String}

Return the message + ' world'

Source:
Parameters:
Name Type Description
options Object

(see attributes below)

Name Type Attributes Default Description
message String <optional>
''

message to show

Returns:
Type:
String

Your message + ' world'

Example
// Initialize YourLibrary
 var foo = YourLibrary.init({
     message: 'hello'
 });
 console.log(foo);