2025-08-01 20:19:24 +01:00
|
|
|
import fs,{readFile} from 'node:fs'
|
|
|
|
|
|
|
|
import classnames from 'classnames'
|
|
|
|
// import {neq} from 'semver'
|
2025-08-01 20:49:08 +01:00
|
|
|
import {sum, div} from './arithmetic.cjs';
|
2025-07-26 13:44:32 +01:00
|
|
|
|
|
|
|
readFile('a',(err)=>{
|
|
|
|
if(err){return;}
|
2025-08-01 20:19:24 +01:00
|
|
|
})
|
2025-08-01 20:49:08 +01:00
|
|
|
console.log(classnames({a:true,b:true})); // $ExpectType string
|
2025-08-01 20:19:24 +01:00
|
|
|
console.log(sum(2, 3));
|
|
|
|
// console.log(neq('1.0.0', '1.0.1')); // $ExpectType boolean
|