mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
13 lines
211 B
JavaScript
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;
|
|
};
|