Align indentations

This commit is contained in:
Michał Lipiński
2019-08-20 12:13:07 +02:00
parent f90d0aec23
commit 8b441a506b
11 changed files with 34 additions and 31 deletions

3
.gitignore vendored
View File

@@ -2,3 +2,6 @@
*.log* *.log*
doc/*.html doc/*.html
node_modules node_modules
*.code-workspace
*.sublime-project
*.sublime-workspace

View File

@@ -14,7 +14,7 @@ const rePropName = RegExp(
')\\]'+ '|' + ')\\]'+ '|' +
// Or match "" as the space between consecutive dots or empty brackets. // Or match "" as the space between consecutive dots or empty brackets.
'(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|$))' '(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|$))'
, 'g') , 'g')
/** /**
* Converts `string` to a property path array. * Converts `string` to a property path array.