unpkg/public/react-motion@0.5.2/lib/mapToZero.js.flow

14 lines
342 B
Plaintext

/* @flow */
import type {PlainStyle, Style} from './Types';
// currently used to initiate the velocity style object to 0
export default function mapToZero(obj: Style | PlainStyle): PlainStyle {
let ret = {};
for (const key in obj) {
if (Object.prototype.hasOwnProperty.call(obj, key)) {
ret[key] = 0;
}
}
return ret;
}