Summary: The functions in this class were used in previous versions, but will be permanently eliminated in future versions. Grab them while the grabbing is still hot.
Function | Summary |
isSurroundedBySpace |
Does the provided string start or end with a space? |
isSurroundedByChar |
Does the provided string start or end with the provided character? |
calert |
Conditionally print the provided message in an alert box. |
cibBoolStrOpt |
Crash if the provided value is an invalid BooleanString. |
getOptBooleanString |
If the value is provided, get its BooleanString value. |
test |
Deprecated for [test_and_xmpl.]testCode() . A single unit test. If the actual result differs from the actual, an error alert box is presented. This function is rudimentary. |
will_be_elim.js
: OverviewThe functions in this class were used in previous versions, but will be permanently eliminated in future versions. Grab them while the grabbing is still hot.
will_be_elim
.isSurroundedBySpace()
Does the provided string start or end with a space?
Equal to isSurroundedByChar(s_tring, ' ')
will_be_elim
.isSurroundedByChar()
Does the provided string start or end with the provided character?
s_tring
: The string to analyze.c_har
: The character that is determined to exist at the start or end of s_tring.s_tring
is c_har
s_tring
is null or zero characters in length, or both the first and last characters in s_tring
are not c_har
.
will_be_elim
.calert()
Conditionally print the provided message in an alert box.
b_condition
: if true, present s_message in an alert box. If false, do nothing.s_message
: The message to present in an alert box, should b_condition
be true. If b_condition
is false, this parameter is ignored.b_condition
is true
will_be_elim
.cibBoolStrOpt()
Crash if the provided value is an invalid BooleanString.
will_be_elim
.getOptBooleanString()
If the value is provided, get its BooleanString value.
will_be_elim
.test()
Deprecated for [test_and_xmpl.]testCode()
. A single unit test. If the actual result differs from the actual, an error alert box is presented. This function is rudimentary.
s_nameOfTest
: The name of the calling JavaScript file and function name, currently being tested. Required.i_testNumber
: The number of the test, for potential error messages only. Required.s_expected
: The expected response from this test.s_actual
: he actual response from this test.true
if s_expected equals s_actual.false
if s_expected does not equal s_actual.___RPLC___ vfjs_doc_footer ___RPLCZ___