chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:46:20 +08:00
commit eb21b65815
830 changed files with 113645 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
const { enc, dec } = require('../../src/app/common/pass-enc')
const {
test: it, expect
} = require('@playwright/test')
const { describe } = it
it.setTimeout(100000)
describe('enc/dec funcs', function () {
it('dec/dec', async function () {
const rr = 'AZaz/.,;sd7s87dfds#2342834_+=-!@$%^&*()'
const r = enc(rr)
console.log(r)
const r2 = dec(r)
console.log(r2)
expect(r2).equal(rr)
})
})