From 64dfb7574e924be3ad737c33cbc81d619dbc14c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Ribaudo?= Date: Mon, 15 Jan 2018 21:57:43 +0100 Subject: [PATCH] Remove old comment (#7220) --- packages/babel-types/src/validators/is.js | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/babel-types/src/validators/is.js b/packages/babel-types/src/validators/is.js index c5db6a4fcf..25cd7c735f 100644 --- a/packages/babel-types/src/validators/is.js +++ b/packages/babel-types/src/validators/is.js @@ -6,7 +6,6 @@ import isType from "./isType"; * Returns whether `node` is of given `type`. * * For better performance, use this instead of `is[Type]` when `type` is unknown. - * Optionally, pass `skipAliasCheck` to directly compare `node.type` with `type`. */ export default function is(type: string, node: Object, opts?: Object): boolean { if (!node) return false;