1.1.0 • Published 6 years ago

substr-occurrence v1.1.0

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

Substr Occurrence

forthebadge Build Status

A small, extremely lightweight library that counts the number of occurrences of a substring or single character in a larger string. Created because string-occurrence was too bloated and slow.

Installation

npm install codetheweb/substr-occurrence

Usage

var occurrence = require('substr-occurrence');

console.log(occurrence('o', 'foo bar');

Output should be 2.

Tests

npm test