From 4c7f21e0dddbc3483334ee5ca61b2f992bb9b293 Mon Sep 17 00:00:00 2001 From: Jason Westbrook Date: Tue, 29 May 2018 16:11:57 -0700 Subject: [PATCH] remove alias copy of $A to Array.from --- src/prototype/lang/array.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/prototype/lang/array.js b/src/prototype/lang/array.js index f8d727d1b..1b8878c1a 100644 --- a/src/prototype/lang/array.js +++ b/src/prototype/lang/array.js @@ -95,11 +95,6 @@ function $w(string) { return string ? string.split(/\s+/) : []; } -/** alias of: $A - * Array.from(iterable) -> Array -**/ -Array.from = $A; - /** section: Language * class Array * includes Enumerable