UNPKG

arcade-physics

Version:
21 lines 645 B
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2020 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ /** * Takes the given array and runs a numeric sort on it, ignoring any non-digits that * may be in the entries. * * You should only run this on arrays containing strings. * * @function Phaser.Utils.Array.SortByDigits * @since 3.50.0 * * @param {string[]} array - The input array of strings. * * @return {string[]} The sorted input array. */ declare const SortByDigits: (array: any) => any; export { SortByDigits }; //# sourceMappingURL=SortByDigits.d.ts.map