mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
18 lines
323 B
JavaScript
18 lines
323 B
JavaScript
/*
|
|
* Copyright 2016 Semmle
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Definitions for ECMAScript 2016.
|
|
* @see https://262.ecma-international.org/7.0/
|
|
* @externs
|
|
*/
|
|
|
|
/**
|
|
* @param {*} searchElement
|
|
* @param {number=} fromIndex
|
|
* @return {boolean}
|
|
* @nosideeffects
|
|
*/
|
|
Array.prototype.includes = function(searchElement, fromIndex) {};
|