Skip to content

Commit 4eda06f

Browse files
committed
Make ref private on JSDate
No idea why I made it `public` in the first place...
1 parent f97dca1 commit 4eda06f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/JavaScriptKit/BasicObjects/JSDate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
public final class JSDate {
22
private static let constructor = JSObject.global.Date.function!
3-
public let ref: JSObject
3+
private let ref: JSObject
44

55
public init(millisecondsSinceEpoch: Double? = nil) {
66
if let milliseconds = millisecondsSinceEpoch {

0 commit comments

Comments
 (0)