6 lines
226 B
JavaScript
6 lines
226 B
JavaScript
|
import {ImplementationsGenerator, onType} from '#core/helpers.js'
|
||
|
import {Passthru} from '#core/TypePatterns.js'
|
||
|
|
||
|
export const config = new ImplementationsGenerator(
|
||
|
() => onType(Passthru, {relTol: 1e-12, absTol: 1e-15}))
|