1.0.0 • Published 7 years ago

substr-distance v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

substr-distance

Get the distance of a substring from the start of a line

Travis npm

Installation

npm install substr-distance

Usage

const substrDistance = require('substr-distance');

const page = `
<html>
  <body>
    <p id="thing">Find me!</p>
  </body>
</html>
`;

substrDistance(page, '<p id="thing">'); // => 4

API

substrDistance(haystack, needle)

Find string needle in haystack, and return the number of characters needle sits from the beginning of the line.

  • haystack (String): String to search in.
  • needle (String): String to search for.

Returns distance from start of line to needle. If needle is not found at all, -1 is returned.

Local Development

git clone https://github.com/gakimball/substr-distance
cd substr-distance
npm install
npm test

License

MIT © Geoff Kimball