• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (c) 2025 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16export const ARRAY_API_LIST = [
17  'length',
18  'concat',
19  'copyWithin',
20  'entries',
21  'every',
22  'fill',
23  'filter',
24  'find',
25  'findIndex',
26  'flat',
27  'flatMap',
28  'forEach',
29  'includes',
30  'indexOf',
31  'join',
32  'keys',
33  'lastIndexOf',
34  'map',
35  'pop',
36  'push',
37  'reduce',
38  'reduceRight',
39  'reverse',
40  'shift',
41  'slice',
42  'some',
43  'sort',
44  'splice',
45  'toLocaleString',
46  'toString',
47  'unshift',
48  'values'
49];
50