Disable the confirmation dialog when deleting files in the VS Code explorer to streamline the development workflow and reduce friction during file management operations.
6 lines
132 B
JavaScript
6 lines
132 B
JavaScript
'use strict'
|
|
|
|
const compare = require('./compare')
|
|
const rcompare = (a, b, loose) => compare(b, a, loose)
|
|
module.exports = rcompare
|