1- function _arrayLikeToArray ( arr , len ) {
1+ function _array_like_to_array ( arr , len ) {
22 if ( len == null || len > arr . length ) len = arr . length ;
33 for ( var i = 0 , arr2 = new Array ( len ) ; i < len ; i ++ ) arr2 [ i ] = arr [ i ] ;
44 return arr2 ;
55}
6- function _arrayWithHoles ( arr ) {
6+ function _array_with_holes ( arr ) {
77 if ( Array . isArray ( arr ) ) return arr ;
88}
9- function _classCallCheck ( instance , Constructor ) {
9+ function _class_call_check ( instance , Constructor ) {
1010 if ( ! ( instance instanceof Constructor ) ) {
1111 throw new TypeError ( "Cannot call a class as a function" ) ;
1212 }
1313}
14- function _iterableToArrayLimit ( arr , i ) {
14+ function _iterable_to_array_limit ( arr , i ) {
1515 var _i = arr == null ? null : typeof Symbol !== "undefined" && arr [ Symbol . iterator ] || arr [ "@@iterator" ] ;
1616 if ( _i == null ) return ;
1717 var _arr = [ ] ;
@@ -35,25 +35,25 @@ function _iterableToArrayLimit(arr, i) {
3535 }
3636 return _arr ;
3737}
38- function _nonIterableRest ( ) {
38+ function _non_iterable_rest ( ) {
3939 throw new TypeError ( "Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method." ) ;
4040}
41- function _slicedToArray ( arr , i ) {
42- return _arrayWithHoles ( arr ) || _iterableToArrayLimit ( arr , i ) || _unsupportedIterableToArray ( arr , i ) || _nonIterableRest ( ) ;
41+ function _sliced_to_array ( arr , i ) {
42+ return _array_with_holes ( arr ) || _iterable_to_array_limit ( arr , i ) || _unsupported_iterable_to_array ( arr , i ) || _non_iterable_rest ( ) ;
4343}
44- function _unsupportedIterableToArray ( o , minLen ) {
44+ function _unsupported_iterable_to_array ( o , minLen ) {
4545 if ( ! o ) return ;
46- if ( typeof o === "string" ) return _arrayLikeToArray ( o , minLen ) ;
46+ if ( typeof o === "string" ) return _array_like_to_array ( o , minLen ) ;
4747 var n = Object . prototype . toString . call ( o ) . slice ( 8 , - 1 ) ;
4848 if ( n === "Object" && o . constructor ) n = o . constructor . name ;
4949 if ( n === "Map" || n === "Set" ) return Array . from ( n ) ;
50- if ( n === "Arguments" || / ^ (?: U i | I ) n t (?: 8 | 1 6 | 3 2 ) (?: C l a m p e d ) ? A r r a y $ / . test ( n ) ) return _arrayLikeToArray ( o , minLen ) ;
50+ if ( n === "Arguments" || / ^ (?: U i | I ) n t (?: 8 | 1 6 | 3 2 ) (?: C l a m p e d ) ? A r r a y $ / . test ( n ) ) return _array_like_to_array ( o , minLen ) ;
5151}
5252import other from "other" ;
53- var _other = _slicedToArray ( other , 1 ) , foo = _other [ 0 ] ;
53+ var _other = _sliced_to_array ( other , 1 ) , foo = _other [ 0 ] ;
5454var Foo = function Foo ( ) {
5555 "use strict" ;
56- _classCallCheck ( this , Foo ) ;
56+ _class_call_check ( this , Foo ) ;
5757} ;
5858export var __N_SSG = true ;
5959export default function Home ( ) {
0 commit comments