summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/strings/sha1_file.js
diff options
context:
space:
mode:
authorMarvin Borner2018-11-07 22:10:16 +0100
committerMarvin Borner2018-11-07 22:10:17 +0100
commit954583f3d56fbfb60321725f13ad092e536e3737 (patch)
treea0505a763797582c61fd8c2f90b422456d8874c9 /node_modules/locutus/php/strings/sha1_file.js
parent1c355e6e956a4e507ed5436d0c814ba9c3a1deb2 (diff)
Removed node_modules
Diffstat (limited to 'node_modules/locutus/php/strings/sha1_file.js')
-rw-r--r--node_modules/locutus/php/strings/sha1_file.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/node_modules/locutus/php/strings/sha1_file.js b/node_modules/locutus/php/strings/sha1_file.js
deleted file mode 100644
index 4cb1035..0000000
--- a/node_modules/locutus/php/strings/sha1_file.js
+++ /dev/null
@@ -1,24 +0,0 @@
-'use strict';
-
-module.exports = function sha1_file(str_filename) {
- // eslint-disable-line camelcase
- // discuss at: http://locutus.io/php/sha1_file/
- // original by: Kevin van Zonneveld (http://kvz.io)
- // note 1: Relies on file_get_contents which does not work in the browser, so Node only.
- // note 2: Keep in mind that in accordance with PHP, the whole file is buffered and then
- // note 2: hashed. We'd recommend Node's native crypto modules for faster and more
- // note 2: efficient hashing
- // example 1: sha1_file('test/never-change.txt')
- // returns 1: '0ea65a1f4b4d69712affc58240932f3eb8a2af66'
-
- var fileGetContents = require('../filesystem/file_get_contents');
- var sha1 = require('../strings/sha1');
- var buf = fileGetContents(str_filename);
-
- if (buf === false) {
- return false;
- }
-
- return sha1(buf);
-};
-//# sourceMappingURL=sha1_file.js.map \ No newline at end of file