From d8d73c00e7ba87238610d8081aea993a23651f7d Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Thu, 9 Nov 2017 13:30:43 -0800 Subject: [PATCH] Remove unused not function --- src/vs/base/common/functional.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/vs/base/common/functional.ts b/src/vs/base/common/functional.ts index a352dc9d7df..b3563b3f875 100644 --- a/src/vs/base/common/functional.ts +++ b/src/vs/base/common/functional.ts @@ -5,11 +5,6 @@ 'use strict'; -export function not(fn: (a: A) => boolean): (a: A) => boolean; -export function not(fn: Function): Function { - return (...args) => !fn(...args); -} - export function once(this: any, fn: T): T { const _this = this; let didCall = false; -- GitLab