refactor(ivy): remove unused code (#32041)

PR Close #32041
This commit is contained in:
Pawel Kozlowski 2019-08-07 17:07:30 +02:00 committed by Alex Rickabaugh
parent 939529ce5d
commit 4689ea2727
1 changed files with 0 additions and 11 deletions

View File

@ -91,17 +91,6 @@ export function setUpAttributes(native: RElement, attrs: TAttributes): number {
return i;
}
export function attrsStylingIndexOf(attrs: TAttributes, startIndex: number): number {
for (let i = startIndex; i < attrs.length; i++) {
const val = attrs[i];
if (val === AttributeMarker.Classes || val === AttributeMarker.Styles) {
return i;
}
}
return -1;
}
/**
* Test whether the given value is a marker that indicates that the following
* attribute values in a `TAttributes` array are only the names of attributes,