2015-05-06 14:32:52 -04:00

13 lines
211 B
JavaScript

'use strict';
var otherDep = require('external2');
/**
* This function returns the number one.
* @return {Number} numberone
*/
module.exports = function () {
// this returns 1
return otherDep() - 1;
};