Rename o-value compose method to transform

This commit is contained in:
Talia 2025-02-23 19:23:50 +01:00
parent cc7fcaf1c9
commit bbbdf0a194
Signed by: darkwiiplayer
GPG key ID: 7808674088232B3E

View file

@ -264,7 +264,7 @@ export class ObservableValue extends Observable {
/**
* @param {(value: any) => any} func
*/
compose(func) {
transform(func) {
return new Composition(func, {}, this)
}