Skip to content

Author: admin@master

How to save .xlsx data to file as a blob

I have a similar question to this question(Javascript: Exporting large text/csv file crashes Google Chrome): I am trying to save the data created by excelbuilder.js’s EB.createFile() function. If I put the file data as the href attribute value of a link, it works. However, when data is big, it crashes C…

can javascript be inline with webpack?

I need to import a library to my project, the library should is a javascript file, which need to be inlined to html. for example: library code: I need to make this code inline in html. html: can I implement this with webpack? I find script-loader, but it run the script, not make it inline. Answer At last, we …

Don’t display time if midnight using Moment.js

How do I use http://momentjs.com/docs/ to only display the time if it is not midnight? For instance, please look at the first example below. A possible non-elegant solution would be to use JavaScript to check if the datetime trails with 00:00:00, and if so, provide a format string of ‘MM/DD/YYYY’ …