refactor(): use const and let instead of var
This commit is contained in:
committed by
Victor Berchet
parent
73593d4bf3
commit
77ee27c59e
@@ -251,7 +251,7 @@ export class BindingParser {
|
||||
let securityContexts: SecurityContext[];
|
||||
|
||||
if (parts.length === 1) {
|
||||
var partValue = parts[0];
|
||||
const partValue = parts[0];
|
||||
boundPropertyName = this._schemaRegistry.getMappedPropName(partValue);
|
||||
securityContexts = calcPossibleSecurityContexts(
|
||||
this._schemaRegistry, elementSelector, boundPropertyName, false);
|
||||
|
||||
Reference in New Issue
Block a user