Module refinery.units.strings.clower
Expand source code Browse git
from __future__ import annotations
from refinery.units import Unit
class clower(Unit):
"""
Convert all latin alphabet characters in the input to lowercase.
"""
def process(self, data):
return data.lower()
Classes
class clower-
Convert all latin alphabet characters in the input to lowercase.
Expand source code Browse git
class clower(Unit): """ Convert all latin alphabet characters in the input to lowercase. """ def process(self, data): return data.lower()Ancestors
Subclasses
Class variables
var reverse-
The type of the None singleton.
Inherited members