blob: b5d676d0eb5558ed1880b839e5e0331d280e2e87 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env python
class FilterModule(object):
def filters(self):
return {
'forEachAppend': self.forEachAppend,
}
def forEachAppend(self, arr, _str):
return [ x +_str for x in arr ]
|