We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f1a85d commit 5e20fe3Copy full SHA for 5e20fe3
README.md
@@ -108,7 +108,7 @@ Returns the format used to create the tinycolor instance
108
var color = tinycolor("red");
109
color.getFormat(); // "name"
110
color = tinycolor({r:255, g:255, b:255});
111
- color.getFormat; // "rgb"
+ color.getFormat(); // "rgb"
112
```
113
114
### getOriginalInput
@@ -118,7 +118,7 @@ Returns the input passed into the constructer used to create the tinycolor insta
118
119
color.getOriginalInput(); // "red"
120
121
- color.getOriginalInput; // "{r: 255, g: 255, b: 255}"
+ color.getOriginalInput(); // "{r: 255, g: 255, b: 255}"
122
123
124
### isValid
0 commit comments