UNPKG

@azure/cosmos-language-service

Version:

Cosmos DB SQL Language Service for the Monaco editor

13 lines (11 loc) 494 B
//----------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- export class Utils { public static notEmpty<TValue>(value : TValue | null | undefined) : value is TValue { return value !== null && value !== undefined; } public static notDuplicate(item, pos, self) { return self.indexOf(item) == pos; } }