We don't use tabs but 4 spaces

This commit is contained in:
Johannes Zellner
2016-12-05 16:07:06 +01:00
parent 0baf092ba4
commit eacc4412ba
2 changed files with 7 additions and 7 deletions

View File

@@ -13,9 +13,9 @@ exports = module.exports = {
var assert = require('assert');
function getCertificate(domain, options, callback) {
assert.strictEqual(typeof domain, 'string');
assert.strictEqual(typeof options, 'object');
assert.strictEqual(typeof callback, 'function');
assert.strictEqual(typeof domain, 'string');
assert.strictEqual(typeof options, 'object');
assert.strictEqual(typeof callback, 'function');
return callback(new Error('Not implemented'));
}