Lodash_.isBuffer()方法检查给定的值是否为Buffer。
用法:
_.isBuffer( value )
参数:此方法接受如上所述和以下描述的单个参数:
- value:此参数保存需要检查缓冲区的值。
返回值:此方法返回一个布尔值(如果给定值是Buffer,则返回true,否则返回false)。
范例1:该方法返回真正当值为Buffer时。
// Defining Lodash variable
const _ = require('lodash');
var val = new Buffer(2);
// Checking for Buffer
console.log("The Value is Buffer:"
+_.isBuffer(val));
输出:
The Value is Buffer:true
范例2:
// Defining Lodash variable
const _ = require('lodash');
var val = new Uint8Array(2);
// Checking for Buffer
console.log("The Value is Buffer:"
+_.isBuffer(val));
输出:
The Value is Buffer:false
相关用法
- Node.js Buffer.isBuffer()用法及代码示例
- Lodash _.nth()用法及代码示例
- Lodash _.last()用法及代码示例
- Lodash _.xor()用法及代码示例
- Lodash _.take()用法及代码示例
- Lodash _.sampleSize()用法及代码示例
- Lodash _.find()用法及代码示例
- Lodash _.zipWith()用法及代码示例
- Lodash _.zipObject()用法及代码示例
- Lodash _.head()用法及代码示例
- Lodash _.Intersection()用法及代码示例
- Lodash _.pullAt()用法及代码示例
- Lodash _.remove()用法及代码示例
- Lodash _.dropWhile()用法及代码示例
- Lodash _.chunk()用法及代码示例
- Lodash _.flatten()用法及代码示例
- Lodash _.isBoolean()用法及代码示例
- Lodash _.isArrayLikeObject()用法及代码示例
- Lodash _.fill()用法及代码示例
- Lodash _.isArray()用法及代码示例
注:本文由纯净天空筛选整理自taran910大神的英文原创作品 Lodash _.isBuffer() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。