npm.io
0.1.0 • Published 12 years ago

nodupes

Licence
Version
0.1.0
Deps
0
Vulns
0
Weekly
0
Stars
1

nodupes

Prevent duplicate names by appending an incremented suffix.

Examples

example/nodupes.js

var nodupes = require('nodupes')();
var names = ['name', 'name', 'othername', 'name', 'othername'];
names.forEach(function(name) {
  console.log( nodupes(name) );
});

Output:

$ node example/nodupes.js
name
name-2
othername
name-3
othername-2

Usage

var nodupes = require('nodupes');
var nd = nodupes(options)

Call nodupes() to get a new nodupes function, with its own index and options.

Options:

var options = {
  names: {},           // Load a pre-existing names index (see `nd.getNames()`).
  suffixFirst: false,  // Add a suffix on the first appearance of a name.
  separator: '-'       // Change the suffix separator.
};
nd('name')

Returns the name with an appended suffix if needed.

nd.getNames()

Returns the names index that you can pass to nodupes() with options.names.

Installation

$ npm install nodupes

License

MIT