fix(boards): 修复arduino下变量名大小写不敏感
This commit is contained in:
@@ -52,7 +52,7 @@ class Names {
|
||||
* @return {boolean} True if names are the same.
|
||||
*/
|
||||
static equals(name1, name2) {
|
||||
return name1.toLowerCase() == name2.toLowerCase();
|
||||
return name1 == name2;
|
||||
}
|
||||
/**
|
||||
* When JavaScript (or most other languages) is generated, variable 'foo' and
|
||||
|
||||
Reference in New Issue
Block a user