This commit is contained in:
Garrett Serack 2019-01-17 08:59:39 -08:00
Родитель d0fb583ecf
Коммит 93d9fdcca7
2 изменённых файлов: 1 добавлений и 9 удалений

2
perks

@ -1 +1 @@
Subproject commit 2cbfec57018cbcde3283b12d515b3e6194a1b952
Subproject commit f744521463c40ee8547b72ae50aa1ab15e88b78c

Просмотреть файл

@ -4,14 +4,6 @@ import { PipelinePlugin } from '../common';
import { Dictionary, items } from '@microsoft.azure/linq';
import * as compareVersions from 'compare-versions';
export function typeOf(obj: any) {
const t = typeof (obj);
return t === 'object' ?
Array.isArray(obj) ?
'array' :
'object' :
t;
}
function getMaxApiVersion(apiVersions: Array<string>): string {
let result = '0';