@douyinfe/semi-animation
Version:
animation base library for semi-ui
15 lines (14 loc) • 331 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = mapToZero;
// currently used to initiate the velocity style object to 0
function mapToZero(obj) {
const ret = {};
const objKeys = obj && Object.keys(obj) || [];
for (const key of objKeys) {
ret[key] = 0;
}
return ret;
}