Linux bear.hostingplus.cl 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
LiteSpeed
Server IP : 192.140.57.17 & Your IP : 216.73.216.106
Domains :
Cant Read [ /etc/named.conf ]
User : explo
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
bitninja-threat-hunting /
node_modules /
yn /
Delete
Unzip
Name
Size
Permission
Date
Action
index.d.ts
1.32
KB
-rw-r--r--
2024-07-01 08:57
index.js
711
B
-rw-r--r--
2024-07-01 08:57
lenient.js
1.41
KB
-rw-r--r--
2024-07-01 08:57
license
1.08
KB
-rw-r--r--
2024-07-01 08:57
package.json
1.59
KB
-rw-r--r--
2024-07-01 08:57
readme.md
1.06
KB
-rw-r--r--
2024-07-01 08:57
Save
Rename
declare namespace yn { interface Options { /** Use a key distance-based score to leniently accept typos of `yes` and `no`. @default false */ readonly lenient?: boolean; /** Default value if no match was found. @default null */ readonly default?: boolean | null; } interface OptionsWithDefault extends Options { default: boolean; } } declare const yn: { /** Parse yes/no like values. The following case-insensitive values are recognized: `'y', 'yes', 'true', true, '1', 1, 'n', 'no', 'false', false, '0', 0` @param input - Value that should be converted. @returns The parsed input if it can be parsed or the default value defined in the `default` option. @example ``` import yn = require('yn'); yn('y'); //=> true yn('NO'); //=> false yn(true); //=> true yn('abomasum'); //=> null yn('abomasum', {default: false}); //=> false yn('mo', {lenient: true}); //=> false ``` */ (input: unknown, options: yn.OptionsWithDefault): boolean; (input: unknown, options?: yn.Options): boolean | null; // TODO: Remove this for the next major release, refactor the whole definition to: // declare function yn(input: unknown, options: yn.OptionsWithDefault): boolean; // declare function yn(input: unknown, options?: yn.Options): boolean | null; // export = yn; default: typeof yn; }; export = yn;