From 375b15852c36e569d03a96bd36b71cd4aff03c16 Mon Sep 17 00:00:00 2001 From: Vincent Weevers Date: Fri, 9 Apr 2021 19:15:57 +0200 Subject: [PATCH] Remove unnecessary safe-buffer --- package.json | 1 - test/index.js | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 30c0f9b..0729f03 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,6 @@ "level-community": "^3.0.0", "memdown": "^5.0.0", "nyc": "^15.1.0", - "safe-buffer": "^5.1.1", "standard": "^16.0.3", "tape": "^5.0.1" }, diff --git a/test/index.js b/test/index.js index 4dce39d..b7c8ce3 100644 --- a/test/index.js +++ b/test/index.js @@ -3,7 +3,7 @@ const test = require('tape') const encdown = require('..') const memdown = require('memdown') -const Buffer = require('safe-buffer').Buffer +const Buffer = require('buffer').Buffer const hasOwnProperty = Object.prototype.hasOwnProperty const noop = function () {}