bae705aa97
- Add NFC ePassport roadmap (ICAO 9303, eIDAS) - Add TensorFlow.js edge face detection (BlazeFace) - Add structured audit logger (GDPR-compliant) - Risk scoring support Part of KYC Apple Native UX v1.1.0
19 lines
430 B
JavaScript
19 lines
430 B
JavaScript
import { promises, rmSync } from './fs.js';
|
|
const { rm } = promises;
|
|
export const rimrafNative = async (path, opt) => {
|
|
await rm(path, {
|
|
...opt,
|
|
force: true,
|
|
recursive: true,
|
|
});
|
|
return true;
|
|
};
|
|
export const rimrafNativeSync = (path, opt) => {
|
|
rmSync(path, {
|
|
...opt,
|
|
force: true,
|
|
recursive: true,
|
|
});
|
|
return true;
|
|
};
|
|
//# sourceMappingURL=rimraf-native.js.map
|