mirror of
https://github.com/xfarrow/blink
synced 2025-06-27 09:03:02 +02:00
Change endpoint from persons to people
This commit is contained in:
3
backend/apis/nodejs/node_modules/util/support/isBuffer.js
generated
vendored
Normal file
3
backend/apis/nodejs/node_modules/util/support/isBuffer.js
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
module.exports = function isBuffer(arg) {
|
||||
return arg instanceof Buffer;
|
||||
}
|
6
backend/apis/nodejs/node_modules/util/support/isBufferBrowser.js
generated
vendored
Normal file
6
backend/apis/nodejs/node_modules/util/support/isBufferBrowser.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
module.exports = function isBuffer(arg) {
|
||||
return arg && typeof arg === 'object'
|
||||
&& typeof arg.copy === 'function'
|
||||
&& typeof arg.fill === 'function'
|
||||
&& typeof arg.readUInt8 === 'function';
|
||||
}
|
Reference in New Issue
Block a user