當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript moment.default函數代碼示例

本文整理匯總了TypeScript中moment.default函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript default函數的具體用法?TypeScript default怎麽用?TypeScript default使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了default函數的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: expect

 state.take(1).subscribe((s) => {
   expect(moment(u).isSame(s.items.lastUpdate)).toBeTruthy();
 });
開發者ID:Blackbaud-DanHamlin,項目名稱:skyux2,代碼行數:3,代碼來源:list.component.spec.ts

示例2:

 ctx.options.grid.markings.forEach((m, i) => {
   console.log(
     `Marking (${i}): from=${moment(m.xaxis.from).format()}, to=${moment(m.xaxis.to).format()}, color=${m.color}`
   );
 });
開發者ID:CorpGlory,項目名稱:grafana,代碼行數:5,代碼來源:time_region_manager.test.ts

示例3: it

 it('should work', () => {
   expect(startViewDate(viewCells))
     .toEqual(moment('2018-06-10').toDate());
 });
開發者ID:MaximKudriavtsev,項目名稱:devextreme-reactive,代碼行數:4,代碼來源:computeds.test.ts

示例4: it

      it('should add one fill between sunday 23:00 and monday 01:40', () => {
        const markings = ctx.options.grid.markings;

        expect(moment(markings[0].xaxis.from).format()).toBe(moment('2018-12-10T00:00:00+01:00').format());
        expect(moment(markings[0].xaxis.to).format()).toBe(moment('2018-12-10T02:40:00+01:00').format());
      });
開發者ID:CorpGlory,項目名稱:grafana,代碼行數:6,代碼來源:time_region_manager.test.ts

示例5: beforeEach

 beforeEach(() => {
   builder.rawQueryString = 'query=Tablename | where myTime >= $__from and myTime <= $__to';
   builder.options.range.to = moment().subtract(1, 'hour');
   builder.options.rangeRaw.to = 'now-1h';
 });
開發者ID:CorpGlory,項目名稱:grafana,代碼行數:5,代碼來源:querystring_builder.test.ts

示例6: moment

 ctx.timeSrvMock.timeRange = () => {
   return {
     from: moment(1531468681),
     to: moment(1531489712),
   };
 };
開發者ID:acedrew,項目名稱:grafana,代碼行數:6,代碼來源:datasource.test.ts

示例7: encodeMoment

import JsonEsc from 'jsonesc';
import moment from 'moment';

const startTime = moment();
const Moment = startTime.constructor;

function encodeMoment(val: any): string {
  return `\u001bTime:${val.toISOString(true)}`;
}

function decodeMoment(str: string): any {
  return moment.parseZone(str.substr(6));
}

let encoder = new JsonEsc();
encoder.registerRaw('Time', Moment, encodeMoment, decodeMoment);

export function encode(value: any): string {
  return encoder.stringifySorted(value, 1);
}

export function decode(str: string): any {
  return encoder.parse(str);
}
開發者ID:fossabot,項目名稱:ticlo,代碼行數:24,代碼來源:Serialize.ts


注:本文中的moment.default函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。