Variable: nsfwStyles
const
nsfwStyles:string[]
The nsfwStyles
variable is an array of strings that represent the styles supported for Non-Safe for Work (NSFW) content within the Mika Scraper module. This variable can be used to apply specific styles when filtering or categorizing NSFW data.
Defined In
- Source File:
src/_other-scraper/text2nsfw.ts
- Line Number: 19
Usage
When implementing the Mika Scraper, you may utilize the nsfwStyles
variable to identify or filter content based on the specified NSFW styles.
Example
import { nsfwStyles } from 'mika-scraper';
nsfwStyles.forEach(style => {
console.log(`Supported NSFW style: ${style}`);
});
Supported Styles
The following are the styles supported by nsfwStyles
:
"style1"
"style2"
"style3"
- (Add additional styles here if applicable)
Last updated on