-
Notifications
You must be signed in to change notification settings - Fork 0
API Object
x
:: Object
y
:: Object
return
:: Object
Returns an object that has all the keys/values of both x
and y
. If x
and y
have the same key then it will use y
's value.
propertyName
:: String
obj
:: Object
return
:: Any
Accesses the specified property of the object. tlc.prop(propertyName, obj)
is equivalent to obj[propertyName]
.
If you have an array of DOM elements, xs
, and you want to get their offset widths you can do the following.
tlc.map(tlc.prop("offsetWidth"), xs); // [132, 493, ...]
propertyName
:: String
args
:: Array
obj
:: Object
return
:: Any
Calls the specified property of the object. tlc.propCall(propertyName, [arg1, arg2, ...], obj)
is equivalent to obj[propertyName](arg1, arg2, ...)
.
If you have an array of DOM elements, xs
, and you want to get only the ones that have children, you can do the following.
tlc.filter(tlc.propCall("hasChildNodes", []), xs);