本文整理汇总了TypeScript中forms/models/localDate.LocalDate.toMoment方法的典型用法代码示例。如果您正苦于以下问题:TypeScript LocalDate.toMoment方法的具体用法?TypeScript LocalDate.toMoment怎么用?TypeScript LocalDate.toMoment使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类forms/models/localDate.LocalDate
的用法示例。
在下文中一共展示了LocalDate.toMoment方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('should convert to CCJ - for a valid CCJ draft for full admission response paying by set date on breach of payment terms', () => {
const draft: DraftCCJ = ccjDraftWithDefendantDOBKnown
const claim: Claim = new Claim().deserialize(sampleClaimWithFullAdmissionWithSetDateResponseObj)
const DOB: Moment = dob.toMoment()
const countyCourtJudgment: CountyCourtJudgment = CCJModelConverter.convertForRequest(draft, claim)
expect(countyCourtJudgment).to.be.deep.equal(new CountyCourtJudgment(DOB, PaymentOption.IMMEDIATELY, undefined, undefined, undefined, undefined, CountyCourtJudgmentType.ADMISSIONS))
})
示例2: validate
validate (value: any | LocalDate, args?: ValidationArguments): boolean {
const [maxYears] = args.constraints
if (!maxYears || maxYears <= 0) {
throw new Error('Max Years in the past has to be specified and positive value')
}
if (value === undefined) {
return true
}
if (!(value instanceof LocalDate)) {
return false
}
const today = MomentFactory.currentDate()
const date = value.toMoment()
const years = today.diff(date, 'years')
return years <= maxYears
}