Merge pull request #2866 from hzoo/i-2865

transform-es2015-typeof-symbol: check for undefined - fixes #2865
This commit is contained in:
Sebastian McKenzie
2015-11-06 19:40:21 -05:00
4 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
export default function (number) {
if (!isNaN(number)) {
return 1;
}
}

View File

@@ -0,0 +1,5 @@
export default function (number) {
if (!isNaN(number)) {
return 1;
}
}

View File

@@ -0,0 +1,3 @@
{
"plugins": ["transform-es2015-typeof-symbol"]
}