Conformance Examples 0.1.0 — Transforms: transform-downcase¶
downcase-string¶
A string literal downcased via the built-in downcase transform.
Template
Context
Output
downcase-identifier-string¶
An identifier pointing to a string value is downcased.
Template
Context
Output
downcase-null-context¶
A missing key (resolves to null) coerces to "null" then downcases to "null" (already lowercase).
Template
Context
Output
downcase-json-null¶
An explicit JSON null value coerces to "null" then downcases to "null".
Template
Context
Output
downcase-number¶
A number coerces to its string form; downcasing has no effect on digits.
Template
Context
Output
downcase-boolean¶
A boolean true coerces to "true" then downcases to "true" (no-op, already lowercase).
Template
Context
Output
downcase-chained-with-upcase¶
Two-transform chain: downcase then upcase. Final result is uppercase.
Template
Context
Output
downcase-on-binary-false¶
Downcase applied to the result of a false binary comparison. false renders as "false", downcased to "false".
Template
Context
Output
downcase-greek-capital¶
Unicode default case mapping downcases a Greek capital letter to its lowercase form.
Template
Context
Output
Source fixture: transforms/transform-downcase.json