How to use the plist.stringify function in plist

To help you get started, we’ve selected a few plist examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github catesandrew / recipe-parser / utils.js View on Github external
Utils.exportToPlist = function(obj) {
    var headers = [
      '',
      '',
      ''
    ];

    var data =
      headers.join('\n') +
      plist.stringify(obj) +
      '\n';

    return data;
  };
github catesandrew / recipe-parser / lib / util.js View on Github external
var exportToPlist = function(obj) {
  var headers = [
    '',
    '',
    ''
  ];

  var data =
    headers.join('\n') +
    plist.stringify(obj) +
    '\n';

  return data;
};

plist

Apple's property list parser/builder for Node.js and browsers

MIT
Latest version published 1 year ago

Package Health Score

74 / 100
Full package analysis