Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

asdfjkl

leonelgalan1.2kMIT0.0.7

Determines if text contains gibberish.

gibberish, lorem, ipsum, language

readme

asdfjkl

Build Status npm Version

Determines if text contains gibberish. Based on Rob Neuhaus's Gibberish-Detector (Python), inspired in the PHP and Ruby ports.

How it works

The build-in model is built by feeding "The Adventures of Sherlock Holmes" (data/big.txt) into the cli: asdfjkl --train. The resulting model stores the probability of transitioning from each character to other character. This is later used to determine if the text being tested has similar transitions or not. A better explanation can be found in the original author's README - Hot it works

Usage

import asdfjkl from 'asdfjkl';

asdfjkl('asdfjkl');
// true
asdfjkl('Hello World!');
// false