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

17 строки
400 B

  1. 'use strict';
  2. exports.__esModule = true;
  3. exports['default'] = reorderKeys;
  4. var hasWarned = false;
  5. function reorderKeys() {
  6. if (process.env.NODE_ENV === 'development') {
  7. if (!hasWarned) {
  8. hasWarned = true;
  9. console.error('`reorderKeys` has been removed, since it is no longer needed for TransitionMotion\'s new styles array API.');
  10. }
  11. }
  12. }
  13. module.exports = exports['default'];