Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kayle-scanner

Scan URLs for adult content.

Usage

Install the package:

npm install kayle-scanner

Import the package:

import { scan } from "kayle-scanner";

Use the scan function:

const thisIsntAdultContent = scan("https://www.google.com");
console.log(thisIsntAdultContent); // false

const thisIsAdultContent = scan("https://onlyfans.com");
console.log(thisIsAdultContent); // true

Options

const options: ScanOptions = {
	followRedirects: true,
	botDetection: "links", // ignore, links, always
	customDomains: [],
	errors: "ignore", // ignore, log, throw
};

Tests

bun test

About

Scan URLs for adult content.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages