Sets to the update
if the expected
equals to this value and the update
differs from the current value.
If the forcibly
is true, sets to the specified value even if the update
equals to the current value.
the expected value
the new value
true to ignore an equality check
true if the expected
is equal to this value
Compares this value with the specified value. Returns a negative integer, zero, a positive integer as this value is less than, equals to, or greater than the specified value.
value to be compared
a negative integer, zero, a positive integer as this value is less than, equals to, or greater than the specified value
Compares this string and the specified string lexicographically, ignoring case differences.
string to be compared
a negative integer, zero, or a positive integer as this string is less than, equal to, or greater than the specified string
Concatenates the specified string to the end of this string and returns a concatenated string. Returns null if this string is null.
string to be concatenated
concatenated string
Returns true if this string contains the specified string.
sequence to search for
true if this string contains the specified string
Returns true if this contains all the specified values.
values to search for
comparator
context for the comparator
true if this contains all the specified values
If the value is an object/an array, iterates over fields/elements of the value, calling the iteratee for each field/element. The iteratee is invoked with three arguments: field value/element, field name/index and this instance.
If the value is null/undefined, does not invoke the iteratee.
For anything else, invokes the iteratee with three arguments: the value, null and this instance.
The iteratee is bound to the specified thisArg and may exit iteration early by explicitly returning false.
the function called per iteration
the this binding of the iteratee
true to iterate in the reverse order if the value is an array
this
If the value is an object/an array, iterates over fields/elements of the value, calling the iteratee for each field/element. The iteratee is invoked with three arguments: field value/element, field name/index and this instance.
If the value is null/undefined, does not invoke the iteratee.
For anything else, invokes the iteratee with three arguments: the value, null and this instance.
The iteratee is bound to the specified thisArg and may exit iteration early by explicitly returning false.
the function called per iteration
the this binding of the iteratee
true to iterate in the reverse order if the value is an array
this
Returns true if this string ends with the specified suffix.
suffix to search for
true if this string ends with the specified suffix
Returns true if this value is equal to the specified value.
value to be compared
true if this value is equal to the specified value
Returns true if this string is equal to the specified string, ignoring case considerations.
string to be compared
true if this string is equal to the specified string ignoring case considerations
If the value is an object/an array, returns the first field/element which the specified predicate returns true or null if there is no such field/element. The predicate is bound to the thisArg and invoked with three arguments: value, field name/index and this instance.
If the value is null/undefined, does not invokes the predicate and returns null.
For anything else, invokes the predicate with three arguments: the value, null and this instance, and returns the value if the predicate returns true.
the function called per iteration
the this binding of the predicate
true to iterate in the reverse order if the value is an array
the found value or null
If the value is an object/an array, returns the first field/element which the specified predicate returns true or null if there is no such field/element. The predicate is bound to the thisArg and invoked with three arguments: value, field name/index and this instance.
If the value is null/undefined, does not invokes the predicate and returns null.
For anything else, invokes the predicate with three arguments: the value, null and this instance, and returns the value if the predicate returns true.
the function called per iteration
the this binding of the predicate
true to iterate in the reverse order if the value is an array
the found value or null
Sets to the specified JSON.
JSON to be set
this
Returns the current value.
the current value
Sets to the specified value and returns the old value if the specified value differs from the current value.
If the forcibly
is true, sets to the specified value even if the specified value equals to the current value.
the new value
true to ignore an equality check
the old value
Returns the current value.
the current value
Returns the index within this string of the first occurrence of the specified substring, starting at the specified index. Returns -1 if no such substring occurs in this string.
substring to search for
where to begin searching the specified substring
index within this string of the first occurrence of the specified substring
Returns true if length() is less than or equal to 0.
true if length() is less than or equal to 0
Returns true if this is initialized.
true if this is initialized.
Returns true if this data is locked.
true if this data is locked
Returns true if this is non-null.
true if this is non-null.
Returns true if the value is not null/undefined.
true if the value is not null/undefined.
Returns true if the value is null/undefined.
true if the value is null/undefined.
Returns true if this is read-only.
true if this is read-only
Returns the index within this string of the last occurrence of the specified substring, searching backward starting at the specified index. Returns -1 if no such substring occurs in this string.
substring to search for
where to begin searching the specified substring
index within this string of the last occurrence of the specified substring
Returns the length of this string. Returns -1 if this string is null.
length of this string
Locks this data.
this
Returns true if this string matches the specified regular expression. Returns false if this string is null.
regular expression to which this string is to be matched
true if this string matches the specified regular expression
Unregister the event handlers of the specified events.
off( "success" );
// Unregister all the handlers of the events with the namespace `sample`.
off( ".sample" );
// Unregister all the handlers of the `success` event with the namespace `sample`.
off( "success.sample" );
// Multiple event types
off( "success fail" );
space-separated event types
the event handler to be unregistered
this
Unregister the event handlers of the specified events.
off( "success" );
// Unregister all the handlers of the events with the namespace `sample`.
off( ".sample" );
// Unregister all the handlers of the `success` event with the namespace `sample`.
off( "success.sample" );
// Multiple event types
off( "success fail" );
event target
space-separated event types
the event handler to be unregistered
this
Unregisters the event handler for the unregistration events of the specified events.
onoff("eventname", handler);
space-separated event names
an event handler
this
Unregisters the event handlers for the registration events of the specified events.
offon("eventname", handler);
space-separated event types
an event handler
this
Registers the specified event handler for the specified events. When the handler is invoked, the this keyword is a reference to the this class. This method supports space-separated event types and namespces.
on( "success", function(){} );
// `success` event with a namespace `sample`
on( "success.sample", function(){} );
// Multiple namespaces
on( "success.ns1.ns2.ns3", function(){} );
// Multiple event types
on( "success fail", function(){} );
// Event target
on( eventTarget, "success", function(){} );
space-separated event types
the event handler to be registered
this
Registers the specified event handler for the specified events. When the handler is invoked, the this keyword is a reference to the this class. This method supports space-separated event types and namespces.
on( "success", function(){} );
// `success` event with a namespace `sample`
on( "success.sample", function(){} );
// Multiple namespaces
on( "success.ns1.ns2.ns3", function(){} );
// Multiple event types
on( "success fail", function(){} );
// Event target
on( eventTarget, "success", function(){} );
event target or event types
space-separated event types
the event handler to be registered
this
Registers the specified event handler for the specified events. The specified event handler is invoked at most once. When the handler is invoked, the this keyword is a reference to the this class. This method supports space-separated event types and namespces.
one( "success", function(){} );
// `success` event with a namespace `sample`
one( "success.sample", function(){} );
// Multiple namespaces
one( "success.ns1.ns2.ns3", function(){} );
// Multiple event types
one( "success fail", function(){} );
space-separated event types
The event handler to be registered
this
Registers the specified event handler for the specified events. The specified event handler is invoked at most once. When the handler is invoked, the this keyword is a reference to the this class. This method supports space-separated event types and namespces.
one( "success", function(){} );
// `success` event with a namespace `sample`
one( "success.sample", function(){} );
// Multiple namespaces
one( "success.ns1.ns2.ns3", function(){} );
// Multiple event types
one( "success fail", function(){} );
event target
space-separated event types
The event handler to be registered
this
Registers the event handler for the unregistration events of the specified events. The handler is invoked with Connection and a boolean when the event handlers of the specified events are unregistered. The latter boolean gets true if this is the last handler of the event identified by Connection.type.
onoff("eventname", function( connection, isLast ){
// DO SOMETHING HERE
});
space-separated event names
an event handler
this
Registers the event handler for the registration events of the specified events. The handler is invoked with Connection and a boolean when the event handlers of the specified events are registered. The latter boolean gets true if this is the first handler of the event identified by Connection.type.
onon("eventname", function( connection, isFirst ){
if( some-condition ) {
connection.trigger( this, null, [ first-event-parameter, second-event-parameter, ... ] );
}
});
space-separated event types
an event handler
this
Resets to the current value.
the current value
Resets to the current value.
the current value
Invokes all the handlers of the specified event.
retrigger( originalEvent, "success" );
// With two parameters true and 156
retrigger( originalEvent, "success", [true, 156] );
// Namespaced event type
retrigger( originalEvent, "success.sample" );
// Multiple event types
retrigger( originalEvent, "success fail" );
the event object
space-separated event types
the returned values of the invoked handlers
Invokes all the handlers of the specified event.
retrigger( originalEvent, "success" );
// With two parameters true and 156
retrigger( originalEvent, "success", [true, 156] );
// Namespaced event type
retrigger( originalEvent, "success.sample" );
// Multiple event types
retrigger( originalEvent, "success fail" );
event target
the event object
space-separated event types
event parameters
the returned values of the invoked handlers
Sets to the specified value if the specified value differs from the current value.
If the forcibly
is true, sets to the specified value even if the specified value equals to the current value.
new value
true to ignore an equality check
this
Sets to the specified value if the specified value differs from the current value.
If the forcibly
is true, sets to the specified value even if the specified value equals to the current value.
the new value
true to ignore an equality check
this
If the value is an array, returns the size of the array.
If the value is an object, returns the number of fields in the object.
If the value is null/undefined, returns 0.
For anything else, returns 1.
the size of this value
Returns true if the substring of this string beginning at the specified index starts with the specified prefix. Returns false if this string is null.
prefix to search for
where to begin looking in this string
true if the substring of this string beginning at the specified index starts with the specified prefix
Returns a new string that is a substring of this string.
beginning index (inclusive)
ending index (exclusive)
substring of this string
Marks as updated.
this
Returns the JSON representing this value. Must not change the returned value.
the JSON representing this value
Converts all of the characters in this string to lower case using the rules of the default locale and returns it. Returns null if this string is null.
string converted to lowercase
Converts all of the characters in this string to upper case using the rules of the default locale and returns it. Returns null if this string is null.
string converted to uppercase
Invokes all the handlers of the specified event.
trigger( "success" );
// With two parameters true and 156
trigger( "success", [true, 156] );
// Namespaced event type
trigger( "success.sample" );
// Multiple event types
trigger( "success fail" );
space-separated event types
event parameters
the returned values of the invoked handlers
Invokes all the handlers of the specified event.
trigger( "success" );
// With two parameters true and 156
trigger( "success", [true, 156] );
// Namespaced event type
trigger( "success.sample" );
// Multiple event types
trigger( "success fail" );
Event target
space-separated event types
event parameters
the returned values of the invoked handlers
Returns a copy of this string, with leading and trailing whitespace omitted. Returns null if this string is null.
a copy of this string without leading and trailing whitespace
Unlocks this data.
this
Extends the specified target with the Connectable methods.
non-null target to be extended
the specified target
Generated using TypeDoc
A synchronized string.