count_sheep
Advanced tools
Comparing version 1.0.9 to 1.0.10
#!/usr/bin/env node | ||
var sheep = require("./sheep_fn.js"); | ||
setInterval(sheep.num_sheep,1000); | ||
sheep.sing(); | ||
setInterval(function(){ | ||
sheep.num_sheep("small"); | ||
},1000); |
@@ -56,3 +56,3 @@ { | ||
}, | ||
"version": "1.0.9" | ||
"version": "1.0.10" | ||
} |
@@ -9,1 +9,4 @@ var i = 1; | ||
} | ||
exports.sing=function(){ | ||
console.log("我是一只小小羊"); | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2920
17