We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fe1e53 commit 35b0e95Copy full SHA for 35b0e95
1 file changed
Sources/JSEN.swift
@@ -19,7 +19,7 @@ public enum JSEN : Equatable {
19
case null
20
21
/// Attempts to initialize a JSEN instance from an `Any?` value.
22
- init?(from anyValue: Any?) {
+ public init?(from anyValue: Any?) {
23
switch anyValue {
24
case let int as Int: self = .int(int)
25
case let double as Double: self = .double(double)
0 commit comments