1.0.0 • Published 9 years ago

strip-utm v1.0.0

Weekly downloads
4
License
WTFPL
Repository
github
Last release
9 years ago

strip-utm

Removes utm tracking codes from a URL query string.

Installation

$ npm install strip-utm --save

Usage

var stripUtm = require('./strip-utm');

var theUrl = 'http://example.com/?utm_campaign=RSS-Feedburner-All-Partial&utm_cid=RSS-Feedburner-All-Partial&utm_medium=feed&utm_source=feedly&utm_reader=feedly&z=last&m=middle&a=first&t=upper-middle';

console.log(stripUtm(theUrl));

Output:

http://example.com/?a=first&m=middle&t=upper-middle&z=last