Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

3 лет назад
12345678910111213
  1. /* @flow */
  2. import type {PlainStyle, Style} from './Types';
  3. // currently used to initiate the velocity style object to 0
  4. export default function mapToZero(obj: Style | PlainStyle): PlainStyle {
  5. let ret = {};
  6. for (const key in obj) {
  7. if (Object.prototype.hasOwnProperty.call(obj, key)) {
  8. ret[key] = 0;
  9. }
  10. }
  11. return ret;
  12. }