mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-07 15:47:45 +02:00
* Fix EndsWith declaration
This commit is contained in:
parent
223e553de3
commit
9e2c77792d
@ -300,7 +300,8 @@ type
|
||||
function charCodeAt(aIndex : NativeInt) : NativeInt;
|
||||
function codePointAt(aIndex : NativeInt) : NativeInt;
|
||||
function concat(s : string) : string; varargs;
|
||||
function endsWith(aSearchString : string; Pos : NativeInt = 0) : boolean;
|
||||
function endsWith(aSearchString : string) : boolean; overload;
|
||||
function endsWith(aSearchString : string; Pos : NativeInt) : boolean; overload;
|
||||
function includes(aSearchString : string; Pos : NativeInt = 0) : boolean;
|
||||
function indexOf(aSearchString : String; Pos : NativeInt = 0) : Integer;
|
||||
function lastIndexOf(aSearchString : String) : NativeInt;overload;
|
||||
|
Loading…
Reference in New Issue
Block a user