Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

test.js
/**
 * Dependencies
 */

var compare = require('./');

require('chai').should();


/**
 * Tests
 */

describe ('secure-compare', function () {
  it ('compare', function () {
    compare('abc', 'abc').should.equal(true);
    compare('abc', 'ab').should.equal(false);
  });
});