We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5c7f5d7 + c30a01e commit 50a8632Copy full SHA for 50a8632
lib/webcolor.js
@@ -7,6 +7,12 @@ var UIColor = require("UIKit/UIColor"),
7
NSNotFound = require("Foundation").NSNotFound,
8
colorLookup;
9
10
+/*
11
+ * Public API's
12
+ */
13
+exports.webColorNamed = webColorNamed;
14
+exports.isDarkColor = isDarkColor;
15
+
16
/*
17
* Constructor
18
*/
@@ -164,9 +170,3 @@ function generateColorLookup() {
164
170
function RGBACOLOR(r, g, b, a) {
165
171
return UIColor.colorWithRedGreenBlueAlpha(r, g, b, a);
166
172
}
167
-
168
-/*
169
- * Public API's
- */
-exports.webColorNamed = webColorNamed;
-exports.isDarkColor = isDarkColor;
0 commit comments