Built-in locales for use in
A format style for an expected value type
(txt|dte|num|num|bln|arr|obj|raw).
A String template for the FRMT class. (see: printf (C++))
| ... | Name | Output |
|---|---|---|
%(t) |
Stringy |
Any value, formatted as (t). |
%[%s](t) |
Array |
The Array, formatted as specified. |
%{%(k¦v)s}(t) |
Object |
The Object, formatted as specified. |
%(named)(t) |
Named |
The property matching the named variable. |
| ... | Name | Output | Example |
|---|---|---|---|
s |
String |
String of characters. | hello, world |
d |
Date |
A date string or object. | May 4 05:00PM |
i |
Integer |
Signed decimal integer. | 392 |
f |
Float |
Decimal floating point, lowercase. | 392.65 |
b |
Boolean |
A truthy or falsy statement. | true |
a |
Array |
An array or items | [1,2,3,4,5] |
o |
Object |
An object of items. | {hello:"world"} |
r |
Raw |
Anything. Evalutes and auto formats. | 1 or "hello" |
%% |
String |
A literal percent sign. | % |
| ... | Name | Output |
|---|---|---|
! |
Strict |
Blank, if the value does not match the type. |
- |
Left |
Left-justify within the given field width; Right justification is the default. |
(number) |
Width |
Minimum number of characters to be printed. |
.(number) |
Width |
The minimum number of digits or decimal places to be printed. |
| Context | Name | Description | Example |
|---|---|---|---|
%|-/Mr.|s |
Prefix |
Prepend the template value with Mr. |
Smith => Mr. Smith |
%|+/ Sr.|s |
Suffix |
Append the template value with Sr. |
Jacob => Jacob Sr. |
%[%s|;/ or ]s |
Delimiter |
Delimit the template value by or |
[1,2] => 1 or 2 |
%[ %s|&/ and]s |
Last |
Prepend the last Array item with and |
[1,2,3] => 1 2 and 3 |
%|^/U|s |
Case |
Format the case as U|L|T |
hello => HELLO |
%|@/grey|s |
Color |
Color the template value | ... |
%|=/ll/77|s |
Replace |
Replace occurences of characters with another | hello => he77o |
%|#/Name:|s |
Index |
Comming soon... | ... |
%|?/Name:|s |
Column |
Coming soon... | ... |
A page Number for the JSON results
A limit Number for the JSON results
A link to the previous page of JSON results
A link to the next page of JSON results
A query parameter in a query Object
A collection of Handlers for each ELOGR Event
A function to time using the LG.Timed method
See: Marak/colors.js
See: Facebook/ImmutableJS
See: tzdata
See: Node.js/path
See: Node.js/os
See: Node.js/fs
The platform this application exists on.
...
...
...
...
Converts a function's Arguments into an Array.
An optional starting index to slice the list.
Retrieves the constructor name of an Object.
Any Object.
If true; attempts to retrieve the instance name of the Object.
Determines if an Object is of a specified type.
Any Object.
An Object to compare.
Retrieves the specific type of Object the argument is.
Any Object.
A factory that creates a Proxied Class.
The parent class.
The class to extend.
The proxy handler functions.
The new proxied class.
Creates a PropertyDescriptor that will hide the specified Property.
The value associated with the property. Can be any valid JavaScript value (number, object, function, etc).
true if the properties utilizes Getters or Setters.
A short-named, wrapper for the Object.defineProperties method.
Any extendable Object.
A collection Property Descriptor
Determines if a value is null or undefined.
Any value.
Determines if a value is null or undefined, and optionally coalesces a default-value.
Any value.
An optional default value.
A boolean, if def isn't defined; otherwise, the default-value.
Determines if a value is truly not a number.
Determines the type of a value:.
Any value.
Determines the generalized type of a value, as well as those that it is not.
Any value.
DEPRECATED A wrapper function that allows for default arguments.
The callback to wrap.
An plain-object representing the arguments and their defaults.
The result of the function; if any.
Determines the "top"/"bottom" value of an Array given specified criteria.
An Array of a specific type.
A callback that yields the property/value of the items to compare during the sort.
If true; finds the "bottom" value.
Converts a JS iterable into an ordered, ImmutableJS object (or just the value, if not an iterable).
Any JS object
Registers your custom App settings.
Your custom settings, imported ./config/settings.cfg.js.
A collection of useful API Utilities & PolyFills