codecamp

Vinyl.isVinyl()

Vinyl.isVinyl()介绍

检测一个对象(object)是否是一个 Vinyl 实例。不要使用 instanceof 方法。

注意:此方法使用了 Vinyl 的一个内部属性,而这个属性在老版本的 Vinyl 中是不存在的,如果你使用的恰好时老版本,则会得到一个 fasle 结果。

Vinyl.isVinyl()用法

const Vinyl = require('vinyl');

const file = new Vinyl();
const notAFile = {};

Vinyl.isVinyl(file) === true;
Vinyl.isVinyl(notAFile) === false; 

Vinyl.isVinyl()函数原型

Vinyl.isVinyl(file);

参数

参数类型注解
fileobject需要检查的对象

返回值

如果 file 对象是 Vinyl 实例则返回 true。


Vinyl
Vinyl.isCustomProp()
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }