File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -375,7 +375,7 @@ abstract class HashedObject {
375375 let value ;
376376 let dependencies = new Set < Dependency > ( ) ;
377377
378- if ( typ === 'boolean' || typ === 'number' || typ === 'string' || typ === 'bigint' ) {
378+ if ( typ === 'boolean' || typ === 'number' || typ === 'string' ) {
379379 value = something ;
380380 } else if ( typ === 'object' ) {
381381 if ( Array . isArray ( something ) ) {
@@ -619,7 +619,7 @@ abstract class HashedObject {
619619
620620 let typ = typeof ( value ) ;
621621
622- if ( typ === 'boolean' || typ === 'number' || typ === 'string' || typ === 'bigint' ) {
622+ if ( typ === 'boolean' || typ === 'number' || typ === 'string' ) {
623623 something = value ;
624624 } else if ( typ === 'object' ) {
625625 if ( Array . isArray ( value ) ) {
You can’t perform that action at this time.
0 commit comments