discordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teams
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
361 B
15 lines
361 B
/** |
|
* This class contains utility methods for dealing with CSV (Comma Separated Values) as |
|
* specified in <a href="http://tools.ietf.org/html/rfc4180">RFC 4180</a>. |
|
* |
|
* For details see `{@link Ext.util.DelimitedValue}`. |
|
* |
|
* @since 5.1.0 |
|
*/ |
|
Ext.define('Ext.util.CSV', { |
|
extend: 'Ext.util.DelimitedValue', |
|
|
|
singleton: true, |
|
|
|
delimiter: ',' |
|
});
|
|
|