13 lines
212 B
JavaScript

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