]> zoso.dev Git - buffer.git/commit
Change error message when unknown encoding is given
authorVolker Mische <volker.mische@gmail.com>
Fri, 19 Jan 2018 00:01:12 +0000 (01:01 +0100)
committerVolker Mische <volker.mische@gmail.com>
Sun, 21 Jan 2018 02:00:49 +0000 (03:00 +0100)
commit7b9f72c0d6e0ebbb725b2235009f35ffcfc96383
tree9426997f65e31ef2b4413319388a7a9e0b3a152d
parent68c2a6ea1d909b0e37a641fe2f9831d5168fe34f
Change error message when unknown encoding is given

The error message changed from

    "encoding" must be a valid string encoding

to

    Unknown encoding: <the-given-encoding>

To make the test work, parts of Node.js's `common` module need to
be used. Add the parts that are needed with minor modifications (the
check for the return code were removed, as vanilla JS errors don't
have an error code, only Node.js errors have).
index.js
package.json
test/common.js [new file with mode: 0644]
test/node/test-buffer-alloc.js