Blame view

node_modules/ajv/lib/dot/multipleOf.jst 618 Bytes
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  {{# def.definitions }}
  {{# def.errors }}
  {{# def.setupKeyword }}
  {{# def.$data }}
  
  var division{{=$lvl}};
  if ({{?$isData}}
        {{=$schemaValue}} !== undefined && (
        typeof {{=$schemaValue}} != 'number' ||
      {{?}}
        (division{{=$lvl}} = {{=$data}} / {{=$schemaValue}},
        {{? it.opts.multipleOfPrecision }}
          Math.abs(Math.round(division{{=$lvl}}) - division{{=$lvl}}) > 1e-{{=it.opts.multipleOfPrecision}}
        {{??}}
          division{{=$lvl}} !== parseInt(division{{=$lvl}})
        {{?}}
        )
      {{?$isData}}  )  {{?}} ) {
    {{# def.error:'multipleOf' }}
  } {{? $breakOnError }} else { {{?}}