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
# yn [](https://travis-ci.org/sindresorhus/yn) > Parse yes/no like values Useful for validating answers of a CLI prompt. --- The following case-insensitive values are recognized: ```js 'y', 'yes', 'true', true, '1', 1, 'n', 'no', 'false', false, '0', 0 ``` *Enable lenient mode to gracefully handle typos.* ## Install ``` $ npm install yn ``` ## Usage ```js const 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 ``` Unrecognized values return `null`. ## API ### yn(input, [options]) #### input Type: `any` Value that should be converted. #### options Type: `Object` ##### lenient Type: `boolean`<br> Default: `false` Use a key distance-based score to leniently accept typos of `yes` and `no`. ##### default Type: `boolean`<br> Default: `null` Default value if no match was found. ## License MIT © [Sindre Sorhus](https://sindresorhus.com)