"Native code" label
How to detect if a function is a core part of browser API? This way:
const a = () => {};
a.toString(); // () => {}
console.log.toString(); // function log() { [native code] }
You see? [native code] label. Sounds good, right?
const a = () => {};
const b = a.bind(null);
b.toString(); // function () { [native code] }
Oops. But we still have this log name in the string snapshot.
Комментарии
Оставить комментарий
modules/comment
window._Comment_content_article_181 = new classes.Comment( '#comment_block_content_article_181',
{
type: 'content_article',
node_id: '181',
user: 1,
user_id: 0,
admin: 0,
view_time: null,
msg: {
empty: 'Комментарий пуст',
ask_link: 'Ссылка:',
ask_img: 'Ссылка на изображение:' }
});