The issue has been closed
I have my application in Angular 7. After installing this package and importing it to the application, it is not working properly.
When I am using the following command 'var color = Color('rgb(255, 255, 255)')' , I am getting following error in the console.
ERROR TypeError: Object(...) is not a function
Can anyone check this and help to solve the issue?

I used this package with typescript and it was working, can you provide the import line? Maybe it is the problem.
posted by dlasagno over 5 years ago
Thanks for your reply. I used the following method to import it.
import { Color } from 'color';
Is it causes the problem? Then please guide me with the right way.
posted by nithincn89 over 5 years ago
Yes, it is the problem.
This is the right way of importing the package:
import * as Color from 'color'
The problem is that the syntax that you used works only if the package 'color'
exports an object with an entry named Color
. But since 'color'
exports a function typescript(or javascript) can't apply an object destructuring to it.
By using the above syntax you just take whatever 'color'
exports and you name it 'Color'
.
If you want to find out more on the subject I suggest you to read this: https://medium.com/backticks-tildes/introduction-to-es6-modules-49956f580da
posted by dlasagno over 5 years ago
@dlasagno That's work great. Thanks for your guidance and solution.
posted by nithincn89 over 5 years ago
Glad you got it figured out.
posted by Qix- over 5 years ago