Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Node.js TypeError: Object function Object() { [native code] } has no method 'assign'

Whenever I execute my program, I receive the following TypeError:

/home/Node-Project/node_modules/sentiment/lib/index.js:31
        afinn = Object.assign(afinn, inject);
                       ^
TypeError: Object function Object() { [native code] } has no method 'assign'
    at module.exports (/home/Node-Project/node_modules/sentiment/lib/index.js:31:24)
    at EventEmitter.<anonymous> (/home/Node-Project/twit4.js:17:9)
    at EventEmitter.emit (events.js:95:17)
    at EventEmitter.processTweet (/home/Node-Project/node_modules/ntwitter/lib/twitter.js:242:14)
    at EventEmitter.emit (events.js:95:17)
    at EventEmitter.receive (/home/Node-Project/node_modules/ntwitter/lib/parser.js:44:12)
    at IncomingMessage.<anonymous> (/home/Node-Project/node_modules/ntwitter/lib/twitter.js:258:16)
    at IncomingMessage.emit (events.js:95:17)
    at IncomingMessage.<anonymous> (_stream_readable.js:765:14)
    at IncomingMessage.emit (events.js:92:17)

I searched but I am unable to understand this error.

Do I have to install a special module?

Do I have to update Node or npm?

Is there an error in my program?

Here is my program:

var twitter = require('ntwitter');
var credentials = require('./credentials3.js');
var sentiment = require ('sentiment');

var twit = new twitter({
    consumer_key: credentials.consumer_key,
    consumer_secret: credentials.consumer_secret,
    access_token_key: credentials.access_token_key,
    access_token_secret: credentials.access_token_secret
});

twit.stream('statuses/filter',{ 'locations':'loc'}, 
function(stream) {
        stream.on('data', function(tweet) {
        var twitterSentiment, geoColor;
        sentiment(tweet.text, function (err, result) {
            twitterSentiment = result;
            if (result == 0) {
                geoColor = '#B5B5B5';
            } else if (result < 0) {
                geoColor = '#FC0828';
            } else {
                geoColor = '#00DE1E';
            } console.log(result);              
            });

        });
    });

Can someone please shed some light?

like image 866
Sam Williams Avatar asked Nov 08 '16 01:11

Sam Williams


2 Answers

Only Node.js v4 and above has Object.assign built in.

If you're using an older version of Node, you can use a polyfill like object.assign.

like image 112
Clarence Leung Avatar answered Oct 03 '22 01:10

Clarence Leung


Getting this kind of error in Cordova project, adding this code has fixed my problem;

if (typeof Object.assign != 'function') {
    Object.assign = function (target, varArgs) {
        'use strict';
        if (target == null) {
            throw new TypeError('Cannot convert undefined or null to object');
        }
        var to = Object(target);
        for (var index = 1; index < arguments.length; index++) {
            var nextSource = arguments[index];

            if (nextSource != null) {
                for (var nextKey in nextSource) {
                    if (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) {
                        to[nextKey] = nextSource[nextKey];
                    }
                }
            }
         }
         return to;
    };
}

source: https://github.com/auth0/auth0-cordova/issues/46#issuecomment-311923820

like image 36
sulaiman sudirman Avatar answered Oct 03 '22 00:10

sulaiman sudirman