12345678910111213141516171819202122232425 |
- module.exports = function isStandardSyntaxProperty(property) {
-
- if (property.startsWith('$')) {
- return false;
- }
-
- if (property.startsWith('@')) {
- return false;
- }
-
- if (/#{.+?}|@{.+?}|\$\(.+?\)/.test(property)) {
- return false;
- }
- return true;
- };
|