From 483310097ead4c4665e9f8cb6aff7f498c655fe9 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Wed, 7 Oct 2015 11:05:12 -0700 Subject: [PATCH] add 'use strict'; There are no strict violations in this code, so it makes sense to let people who are examining the code know right up front that this code already meets many of the most important code quality standards and that no changes that decrease the code quality should be made. --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 45542db..0d182fc 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,4 @@ +'use strict'; var crypto = require('crypto');