mirror of
https://github.com/nunocoracao/blowfish.git
synced 2026-01-30 16:31:52 +01:00
21 lines
476 B
JavaScript
21 lines
476 B
JavaScript
import {tweenValue} from "./tween.js";
|
|
|
|
function textConstant(value) {
|
|
return function() {
|
|
this.textContent = value;
|
|
};
|
|
}
|
|
|
|
function textFunction(value) {
|
|
return function() {
|
|
var value1 = value(this);
|
|
this.textContent = value1 == null ? "" : value1;
|
|
};
|
|
}
|
|
|
|
export default function(value) {
|
|
return this.tween("text", typeof value === "function"
|
|
? textFunction(tweenValue(this, "text", value))
|
|
: textConstant(value == null ? "" : value + ""));
|
|
}
|