Code

1
import { Code } from '@infinityfx/fluid';
secret.ts
1
2
3
4
5
const code: string = 'secret';
                
function isSecret(value: string) {
    return value === code;
}
title