Youming Lin
Youming Lin
I was testing encode/decode via https://mothereff.in/html-entities while cross-referencing the spec, and I noticed that `he` is not able to decode certain named references correctly. On the [w3 spec page](https://www.w3.org/TR/html5/syntax.html#tokenizing-character-references), it...
A minor issue: `he.decode('&abc;', {strict: true})` throws error with this message: `Parse error: named character reference was not terminated by a semicolon`, when in fact neither `a` nor `ab` are...
We want to: 1. make session optional, like PassportJS is 2. support session for non-redirecting plugins (CredentialsHTTP, CredentialsFacebookToken, etc.)
As requested in Slack: https://swift-at-ibm.slack.com/archives/general/p1479485335001773
Env var and argv will assign non-JSON, non-PLIST to String type, always. This makes overriding numeric values with numeric values impossible. We should figure out a way to coerce the...
- [ ] SPM is changing executable location again. `BasePath.project` will be removed along with implicit Xcode support. - [x] Update `Package.swift` to Swift 4 format. - [ ] Add...
- Don't call `XCTFail` in class level `setup` and `teardown` - Rework tests that use `symlinkInExecutableFolder` as the code may not have the permissions to modify that folder
`TestProgram` was written to test code that has no easy way to be tested inside XCT test cases (i.e. code that parses env var and argv). We should revisit this...