UNPKG

tableexport.jquery.plugin

Version:
15 lines (12 loc) 384 B
define( [ "../var/rnothtmlwhite" ], function( rnothtmlwhite ) { "use strict"; // Strip and collapse whitespace according to HTML spec // https://html.spec.whatwg.org/multipage/infrastructure.html#strip-and-collapse-whitespace function stripAndCollapse( value ) { var tokens = value.match( rnothtmlwhite ) || []; return tokens.join( " " ); } return stripAndCollapse; } );