(args: L2Args)
| 103 | } |
| 104 | |
| 105 | export function l2(args: L2Args) { |
| 106 | assertObjectArgs(args); |
| 107 | return new L1L2({l2: args != null ? args.l2 : null, l1: 0}); |
| 108 | } |
| 109 | |
| 110 | /** @docinline */ |
| 111 | export type RegularizerIdentifier = 'l1l2'|string; |
nothing calls this directly
no test coverage detected