Skip to content

Commit

Permalink
crypto: rename symbols to match guidelines
Browse files Browse the repository at this point in the history
  • Loading branch information
tniessen committed Sep 7, 2018
1 parent e007166 commit 251696e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/internal/crypto/hash.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ const { inherits } = require('util');
const { normalizeEncoding } = require('internal/util');
const { isArrayBufferView } = require('internal/util/types');
const LazyTransform = require('internal/streams/lazy_transform');
const kState = Symbol('state');
const kFinalized = Symbol('finalized');
const kState = Symbol('kState');
const kFinalized = Symbol('kFinalized');

function Hash(algorithm, options) {
if (!(this instanceof Hash))
Expand Down

0 comments on commit 251696e

Please sign in to comment.