📜  Moment.js isMoment()函数

📅  最后修改于: 2022-05-13 01:56:54.892000             🧑  作者: Mango

Moment.js isMoment()函数

它用于检查变量是否是 Moment.js 中的特定时刻,使用isMoment()函数检查变量是否为时刻对象,使用 moment.isMoment()。

句法:

moment.isMoment(obj);

参数:对象

返回:真或假

力矩模块的安装:

  1. 您可以访问安装时刻模块的链接。您可以使用此命令安装此软件包。
    npm install moment
  2. 安装moment模块后,您可以使用命令在命令提示符下检查您的moment版本。
    npm version moment
  3. 之后,您可以创建一个文件夹并添加一个文件,例如index.js 。要运行此文件,您需要运行以下命令。
    node index.js

示例 1:文件名:index.js

// Requiring module
const moment = require('moment');
  
var bool2 = moment.isMoment(new Date()); // false
console.log(bool2);
  
var bool3 = moment.isMoment(moment()); // true
console.log(bool3);

运行程序的步骤:

  1. 项目结构将如下所示:
  2. 确保您已使用以下命令安装了moment模块:
    npm install moment
  3. 使用以下命令运行 index.js 文件:
    node index.js

    输出:

    false
    true
    

示例 2:文件名:index.js

// Requiring module
const moment = require('moment');
  
function checkMoment(data){
   return moment.isMoment(data);
}
  
var bool = checkMoment(moment());
console.log(bool);

使用以下命令运行 index.js 文件:

node index.js

输出:

true

参考: https://momentjs.com/docs/#/query/is-a-moment/