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

Package detail

is-snowball

coleww19MIT1.0.1

An Oulipian Poem Detector

oulipo, snowball, poetry

readme

is-snowball

Snowball "A poem in which each line is a single word, and each successive word is one letter longer."

INSTALL

npm install is-snowball

USE

var isSnowball = require('is-snowball')
var text = 'wow what magic swords'
if (isSnowball(text)) console.log(text.split(" ").join("\n"))
=>
    wow
    what
    magic
    swords

API

isSnowball(text, reverse=false) => boolean

  • text: a string to test for "snowballness"
  • reverse: if true, check that each successive word is one letter shorter instead.